This commit is contained in:
2019-09-27 17:44:07 -05:00
parent 52e3a95ddc
commit 50b9298578

View File

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