Browse Source

Update RedirectIfAuthenticated.php

Taylor Otwell 6 years ago
parent
commit
247f7f9619
1 changed files with 1 additions and 1 deletions
  1. 1 1
      app/Http/Middleware/RedirectIfAuthenticated.php

+ 1 - 1
app/Http/Middleware/RedirectIfAuthenticated.php

@@ -19,7 +19,7 @@ class RedirectIfAuthenticated
     {
         foreach ($guards as $guard) {
             if (Auth::guard($guard)->check()) {
-                return redirect('/');
+                return redirect('/home');
             }
         }