From 25c1050e4a36acbbec6b96090c4f96c136eff858 Mon Sep 17 00:00:00 2001 From: Flavio Barachino Date: Wed, 3 May 2023 10:49:50 +0200 Subject: [PATCH] modificato la pagina routes/web --- routes/web.php | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/routes/web.php b/routes/web.php index d62386b..cc96654 100644 --- a/routes/web.php +++ b/routes/web.php @@ -21,11 +21,8 @@ Route::get('/', function () { }); -//Auth::routes(['register' => false]); // Production only - Auth::routes(); //development mode +Auth::routes(['register' => false]); // Production only +// Auth::routes(); //development mode Route::get('/calendar', [TagController::class,'calendartest'])->name('calendar'); Route::get('/home', [App\Http\Controllers\HomeController::class, 'index'])->name('home'); - -Auth::routes(); - Route::get('/home', [App\Http\Controllers\HomeController::class, 'index'])->name('home');