redirect stuff

This commit is contained in:
2018-10-28 21:44:30 -05:00
parent b693d91c6a
commit e662e79f18
2 changed files with 4 additions and 3 deletions
@@ -17,6 +17,8 @@ class RedirectIfAuthenticated
*/
public function handle($request, Closure $next, $guard = null)
{
dd($request);
if (Auth::guard($guard)->check()) {
return redirect('/dashboard');
}