command('dealer:manage-subsidy-settle') ->twiceMonthly(5, 20, '2:00') ->runInBackground(); $schedule->command('dealer:purchase-subsidy-settle') ->monthlyOn(20, '3:00') ->runInBackground(); $schedule->command('dealer:manager-subsidy-settle') ->monthlyOn(1, '3:00') ->runInBackground(); } /** * Register the commands for the application. * * @return void */ protected function commands() { $this->load(__DIR__.'/Commands'); require base_path('routes/console.php'); } }