Browse Source

fixed another home redirect

master
Aaron Parecki 6 years ago
parent
commit
a6252ce3bd
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      app/Http/Middleware/RedirectIfAuthenticated.php

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

@ -18,7 +18,7 @@ class RedirectIfAuthenticated
public function handle($request, Closure $next, $guard = null)
{
if (Auth::guard($guard)->check()) {
return redirect('/home');
return redirect('/dashboard');
}
return $next($request);

Loading…
Cancel
Save