Merge pull request #3929 from bryceadams/patch-map-api-before-web

[5.3] Map API routes before Web routes
This commit is contained in:
Taylor Otwell 2016-09-05 09:41:38 -05:00 committed by GitHub
commit 7f06559971
1 changed files with 2 additions and 2 deletions

View File

@ -35,10 +35,10 @@ public function boot()
*/
public function map()
{
$this->mapWebRoutes();
$this->mapApiRoutes();
$this->mapWebRoutes();
//
}