2016-09-06 16:40:39 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
use Illuminate\Http\Request;
|
2023-06-09 18:31:53 +01:00
|
|
|
use Illuminate\Support\Facades\Route;
|
2016-09-06 16:40:39 +01:00
|
|
|
|
|
|
|
/*
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
| API Routes
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
| Here is where you can register API routes for your application. These
|
2023-02-18 09:34:57 +00:00
|
|
|
| routes are loaded by the RouteServiceProvider and all of them will
|
|
|
|
| be assigned to the "api" middleware group. Make something great!
|
2016-09-06 16:40:39 +01:00
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
2023-02-18 09:34:57 +00:00
|
|
|
/*Route::middleware('auth:sanctum')->get('/user', function (Request $request) {
|
2016-09-06 16:40:39 +01:00
|
|
|
return $request->user();
|
2017-03-03 14:23:56 +00:00
|
|
|
});*/
|