Browse Source

Just use one controller call.

Taylor Otwell 10 years ago
parent
commit
b73e127ed0
1 changed files with 4 additions and 3 deletions
  1. 4 3
      app/Http/routes.php

+ 4 - 3
app/Http/routes.php

@@ -24,6 +24,7 @@ $router->get('/', 'HomeController@index');
 |
 */
 
-$router->controller('auth', 'AuthController');
-
-$router->controller('password', 'PasswordController');
+$router->controllers([
+	'auth' => 'AuthController',
+	'password' => 'PasswordController',
+]);