Browse Source

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

[5.3] Map API routes before Web routes
Taylor Otwell 8 years ago
parent
commit
7f06559971
1 changed files with 2 additions and 2 deletions
  1. 2 2
      app/Providers/RouteServiceProvider.php

+ 2 - 2
app/Providers/RouteServiceProvider.php

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