Tweak location of routes files.
This commit is contained in:
@@ -37,6 +37,8 @@ class RouteServiceProvider extends ServiceProvider
|
|||||||
{
|
{
|
||||||
$this->mapWebRoutes();
|
$this->mapWebRoutes();
|
||||||
|
|
||||||
|
$this->mapApiRoutes();
|
||||||
|
|
||||||
//
|
//
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -52,7 +54,23 @@ class RouteServiceProvider extends ServiceProvider
|
|||||||
Route::group([
|
Route::group([
|
||||||
'namespace' => $this->namespace, 'middleware' => 'web',
|
'namespace' => $this->namespace, 'middleware' => 'web',
|
||||||
], function ($router) {
|
], function ($router) {
|
||||||
require app_path('Http/routes.php');
|
require base_path('routes/web.php');
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Define the "api" routes for the application.
|
||||||
|
*
|
||||||
|
* These routes are typically stateless.
|
||||||
|
*
|
||||||
|
* @return void
|
||||||
|
*/
|
||||||
|
protected function mapApiRoutes()
|
||||||
|
{
|
||||||
|
Route::group([
|
||||||
|
'namespace' => $this->namespace, 'middleware' => 'api',
|
||||||
|
], function ($router) {
|
||||||
|
require base_path('routes/api.php');
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
19
routes/api.php
Normal file
19
routes/api.php
Normal file
@@ -0,0 +1,19 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
/*
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
| 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::group([
|
||||||
|
'prefix' => 'api',
|
||||||
|
'middleware' => 'auth:api'
|
||||||
|
], function () {
|
||||||
|
//
|
||||||
|
});
|
||||||
@@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
/*
|
/*
|
||||||
|--------------------------------------------------------------------------
|
|--------------------------------------------------------------------------
|
||||||
| Application Routes
|
| Web Routes
|
||||||
|--------------------------------------------------------------------------
|
|--------------------------------------------------------------------------
|
||||||
|
|
|
|
||||||
| This file is where you may define all of the routes that are handled
|
| This file is where you may define all of the routes that are handled
|
||||||
Reference in New Issue
Block a user