Browse Source

Merge pull request #3564 from martinbean/patch-1

Change redirect when authenticated
Taylor Otwell 9 years ago
parent
commit
091489d17b
1 changed files with 1 additions and 1 deletions
  1. 1 1
      app/Http/Middleware/RedirectIfAuthenticated.php

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

@@ -35,7 +35,7 @@ class RedirectIfAuthenticated
     public function handle($request, Closure $next)
     {
         if ($this->auth->check()) {
-            return redirect('/home');
+            return redirect('/');
         }
 
         return $next($request);