From 95ba0f602bb6b2eeb82c64192a4615f59ba4f641 Mon Sep 17 00:00:00 2001 From: Flavio Barachino Date: Fri, 11 Mar 2022 11:16:16 +0100 Subject: [PATCH] eliminato link di registrazione --- routes/web.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/routes/web.php b/routes/web.php index 1f9e12f..14aa45b 100644 --- a/routes/web.php +++ b/routes/web.php @@ -21,7 +21,7 @@ Route::get('/', function () { }); -// Auth::routes(['register' => false]); // Production only - Auth::routes(); + Auth::routes(['register' => false]); // Production only +// Auth::routes(); Route::get('/calendar', [TagController::class,'calendartest'])->name('calendar'); Route::get('/home', [App\Http\Controllers\HomeController::class, 'index'])->name('home');