diff --git a/app/Console/Commands/SetupDevEnvironment.php b/app/Console/Commands/SetupDevEnvironment.php index 1e8a80e6..888fccc4 100644 --- a/app/Console/Commands/SetupDevEnvironment.php +++ b/app/Console/Commands/SetupDevEnvironment.php @@ -79,6 +79,11 @@ class SetupDevEnvironment extends Command $this->info('Clearing application cache...'); $this->clear_cache(); + $this->info('Dispatching jobs...'); + $this->call('queue:work', [ + '--stop-when-empty' => true, + ]); + $this->info('Everything is done, congratulations! 🥳🥳🥳'); }