disable registration

This commit is contained in:
2025-07-14 11:06:05 -04:00
parent 7053ce029b
commit 330e210fde

View File

@@ -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']);