Files
.idea
app
bootstrap
config
database
deploy
public
resources
routes
api.php
channels.php
console.php
web.php
storage
tests
.drone.yml
.editorconfig
.env.example
.gitattributes
.gitignore
.styleci.yml
Dockerfile
README.md
artisan
composer.json
composer.lock
package-lock.json
package.json
phpunit.xml
post_deploy.sh
server.php
webpack.mix.js
eliteregistry/routes/api.php
2021-04-06 22:03:54 -07:00

20 lines
566 B
PHP

<?php
use Illuminate\Http\Request;
use Illuminate\Support\Facades\Route;
/*
|--------------------------------------------------------------------------
| API Routes
|--------------------------------------------------------------------------
|
| Here is where you can register API routes for your application. These
| routes are loaded by the RouteServiceProvider within a group which
| is assigned the "api" middleware group. Enjoy building your API!
|
*/
Route::middleware('auth:api')->get('/user', function (Request $request) {
return $request->user();
});