diff --git a/app/Console/Kernel.php b/app/Console/Kernel.php index da6a09a1..eaac9232 100644 --- a/app/Console/Kernel.php +++ b/app/Console/Kernel.php @@ -25,13 +25,16 @@ class Kernel extends ConsoleKernel protected function schedule(Schedule $schedule) { $schedule->command('dealer:manage-subsidy-settle') - ->twiceMonthly(5, 20, '2:00'); + ->twiceMonthly(5, 20, '2:00') + ->runInBackground(); $schedule->command('dealer:purchase-subsidy-settle') - ->twiceMonthly(5, 20, '3:00'); + ->twiceMonthly(5, 20, '3:00') + ->runInBackground(); $schedule->command('dealer:manager-subsidy-settle') - ->monthlyOn(1, '3:00'); + ->monthlyOn(1, '3:00') + ->runInBackground(); } /**