We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8222762 commit 7464ae6Copy full SHA for 7464ae6
routes/web.php
@@ -38,6 +38,7 @@
38
Route::post('/mysql', [InstallerController::class, 'mysql'])->name('mysql');
39
Route::post('/options', [InstallerController::class, 'options'])->name('options');
40
Route::get('/mysql-test', [InstallerController::class, 'mysqlTest'])->name('mysqlTest');
41
+ Route::get('/skip', function () {Artisan::call('db:seed', ['--class' => 'AdminSeeder',]); return redirect(url(''));});
42
43
Route::get('{any}', function() {
44
if(!DB::table('users')->get()->isEmpty()){
0 commit comments