Tweak location of routes files.

This commit is contained in:
Taylor Otwell
2016-07-14 09:36:17 -05:00
parent 2b05ce3b05
commit 7ec26ce916
3 changed files with 39 additions and 2 deletions

View File

@@ -1,16 +0,0 @@
<?php
/*
|--------------------------------------------------------------------------
| Application Routes
|--------------------------------------------------------------------------
|
| This file is where you may define all of the routes that are handled
| by your application. Just tell Laravel the URIs it should respond
| to using a given Closure or controller and enjoy the fresh air.
|
*/
Route::get('/', function () {
return view('welcome');
});

View File

@@ -37,6 +37,8 @@ class RouteServiceProvider extends ServiceProvider
{
$this->mapWebRoutes();
$this->mapApiRoutes();
//
}
@@ -52,7 +54,23 @@ class RouteServiceProvider extends ServiceProvider
Route::group([
'namespace' => $this->namespace, 'middleware' => 'web',
], 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');
});
}
}