stuff after login

This commit is contained in:
2019-10-12 19:23:52 -05:00
parent a232b45962
commit 1a34782c35
6 changed files with 52 additions and 4 deletions

View File

@@ -15,9 +15,7 @@ class Authenticate extends Middleware
protected function redirectTo($request)
{
if($this->auth->check()) {
return route('/');
} else {
return route('/');
return route('/dashboard');
}
}
}