19 lines
465 B
PHP
19 lines
465 B
PHP
|
<?php
|
||
|
|
||
|
/*
|
||
|
|--------------------------------------------------------------------------
|
||
|
| API Routes
|
||
|
|--------------------------------------------------------------------------
|
||
|
|
|
||
|
| Here is where you can register the API routes for your application as
|
||
|
| the routes are automatically authenticated using the API guard and
|
||
|
| loaded automatically by this application's RouteServiceProvider.
|
||
|
|
|
||
|
*/
|
||
|
|
||
|
Route::group([
|
||
|
'middleware' => 'auth:api'
|
||
|
], function () {
|
||
|
//
|
||
|
});
|