feature: keep sidebar and add service layer
This commit is contained in:
@@ -20,6 +20,10 @@ Route::get('/test-modal', function() {
|
||||
Route::get('/login', [AuthController::class, 'showLoginForm'])->name('login');
|
||||
Route::post('/login', [AuthController::class, 'login']);
|
||||
|
||||
Route::get('/notification-showcase', function () {
|
||||
return view('notification-showcase');
|
||||
})->name('notification.showcase');
|
||||
|
||||
Route::middleware('auth')->group(function () {
|
||||
Route::post('/logout', [AuthController::class, 'logout'])->name('logout');
|
||||
|
||||
|
||||
Reference in New Issue
Block a user