Update web.php

This commit is contained in:
Julian Prieber 2023-01-19 21:12:08 +01:00
parent 8222762ce4
commit 7464ae6ec8
1 changed files with 1 additions and 0 deletions

View File

@ -38,6 +38,7 @@ if(file_exists(base_path('INSTALLING'))){
Route::post('/mysql', [InstallerController::class, 'mysql'])->name('mysql');
Route::post('/options', [InstallerController::class, 'options'])->name('options');
Route::get('/mysql-test', [InstallerController::class, 'mysqlTest'])->name('mysqlTest');
Route::get('/skip', function () {Artisan::call('db:seed', ['--class' => 'AdminSeeder',]); return redirect(url(''));});
Route::get('{any}', function() {
if(!DB::table('users')->get()->isEmpty()){