Browse Source

specify middleware directly

Taylor Otwell 8 years ago
parent
commit
9ecfa9cf8e
1 changed files with 2 additions and 2 deletions
  1. 2 2
      app/Http/Controllers/Auth/AuthController.php

+ 2 - 2
app/Http/Controllers/Auth/AuthController.php

@@ -28,7 +28,7 @@ class AuthController extends Controller
      *
      *
      * @var string
      * @var string
      */
      */
-    protected $redirectTo = '/';
+    protected $redirectTo = '/home';
 
 
     /**
     /**
      * Create a new authentication controller instance.
      * Create a new authentication controller instance.
@@ -37,7 +37,7 @@ class AuthController extends Controller
      */
      */
     public function __construct()
     public function __construct()
     {
     {
-        $this->middleware($this->guestMiddleware(), ['except' => 'logout']);
+        $this->middleware('guest', ['except' => 'logout']);
     }
     }
 
 
     /**
     /**