Files
Nick Sorrell c1b2bc1441 Adding laravel (#53)
Co-authored-by: Nick Sorrell <nick@cint.io>
2021-02-22 17:35:49 -08: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();
});