Merge pull request #3845 from mayoz/patch-3

[5.3] web group sort by name
This commit is contained in:
Taylor Otwell 2016-08-01 09:46:57 -04:00 committed by GitHub
commit 4c6abcd17d
1 changed files with 2 additions and 1 deletions

View File

@ -52,7 +52,8 @@ public function map()
protected function mapWebRoutes()
{
Route::group([
'namespace' => $this->namespace, 'middleware' => 'web',
'middleware' => 'web',
'namespace' => $this->namespace,
], function ($router) {
require base_path('routes/web.php');
});