aboutsummaryrefslogblamecommitdiff
path: root/routes/api.php
blob: 4c028b083485db66a7b40a557067e9f6956033ab (plain) (tree)
1
2
3
4
5
6
7




                                     

                                               













                                                                           
 
<?php

use Illuminate\Http\Request;
use Illuminate\Support\Facades\Route;

use App\Http\Controller\ReservationsController;

/*
|--------------------------------------------------------------------------
| 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();
});