Browse Source

Change redirect when authenticated

The route /home doesn’t exist in a default Laravel application, whereas / does.
Martin Bean 9 years ago
parent
commit
223191a9b0
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)
     public function handle($request, Closure $next)
     {
     {
         if ($this->auth->check()) {
         if ($this->auth->check()) {
-            return redirect('/home');
+            return redirect('/');
         }
         }
 
 
         return $next($request);
         return $next($request);