This commit is contained in:
2026-03-15 21:45:32 -05:00
parent 6458326eb2
commit f73c6b79c7

View File

@@ -9,7 +9,7 @@ Route::get('/', function() {
if(Auth::check()) {
return redirect('/dashboard');
} else {
return view('login');
return redirect('/');
}
})->name('notloggedin');