command('inspire')->hourly(); $schedule->command('milk-tea:send_notice_message')->dailyAt('10:00'); $schedule->command('milk-tea:finish_reserve_order')->dailyAt('23:00'); $schedule->command('milk-tea:finish_wait_shipping_order')->dailyAt('23:00'); } /** * Register the commands for the application. * * @return void */ protected function commands() { $this->load(__DIR__.'/Commands'); require base_path('routes/console.php'); } }