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.
--no-interaction
1 parent 7996979 commit e2b41b8Copy full SHA for e2b41b8
src/app/Console/Commands/Install.php
@@ -50,7 +50,9 @@ public function handle()
50
]);
51
52
$this->line(" Creating users table (using Laravel's default migration)");
53
- $this->executeArtisanProcess('migrate');
+ $this->executeArtisanProcess('migrate', [
54
+ '--no-interaction' => $this->option('no-interaction'),
55
+ ]);
56
57
$this->line(" Creating App\Http\Middleware\CheckIfAdmin.php");
58
$this->executeArtisanProcess('backpack:publish-middleware');
0 commit comments