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

View File

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