From 330e210fde83dc24c2dc414524874639d04ed440 Mon Sep 17 00:00:00 2001 From: Russ Long Date: Mon, 14 Jul 2025 11:06:05 -0400 Subject: [PATCH] disable registration --- routes/web.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/routes/web.php b/routes/web.php index 005ae1c..c676783 100644 --- a/routes/web.php +++ b/routes/web.php @@ -13,7 +13,7 @@ if (env('APP_ENV') === 'production') { URL::forceScheme('https'); } -Auth::routes(); +Auth::routes(['register' => false]); Route::get('/', [ 'uses' => 'PagesController@home']); Route::get('home', [ 'uses' => 'PagesController@home']); Route::get('winningbidderlist', [ 'uses' => 'PagesController@winningbidderlist']);