Cambios en catalogo y rutas

This commit is contained in:
BryamE
2026-01-05 01:51:49 -03:00
parent 1cc848fb13
commit fb37cc2059
3 changed files with 17 additions and 16 deletions
+1 -3
View File
@@ -24,9 +24,7 @@ Route::post('login', LoginController::class)
->middleware('throttle:5,1')
->name('login.attempt');
Route::view('dashboard', 'dashboard')
->middleware('auth')
->name('dashboard');
Route::view('dashboard', 'dashboard')->middleware('auth')->name('dashboard');
Route::post('logout', function(){
Auth::guard('web')->logout();