Compare commits

..

No commits in common. "77d512c523ef778ae4320b06e7dcb0368947c839" and "1c676a1095428702fbf0f7be01f8bca09e178c18" have entirely different histories.

2 changed files with 1 additions and 9 deletions

View File

@ -32,13 +32,5 @@
}
return view('login');
})->name('login');
Route::get('/', function () {
if (Auth::check()) {
return redirect('dashboard', 302);
}
return view('login');
})->name('login');
Route::post('/login', [LoginController::class, 'login'])->name('login-post');
});