Map API routes before Web routes

This commit is contained in:
Bryce Adams 2016-09-05 20:54:21 +10:00
parent 7da6edf8c1
commit 78f4e85f74
1 changed files with 2 additions and 2 deletions

View File

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