command("sms:notification")->everyMinute(); $schedule->command('update_sign_status')->everyMinute(); $schedule->command('update_letter')->everyMinute(); // $schedule->command('update_appointment')->everyMinute(); $schedule->command('update_appointment_total')->dailyAt('1:00'); // 生日检测 $schedule->command('check_birthday')->dailyAt('09:00'); } /** * Register the commands for the application. * * @return void */ protected function commands() { $this->load(__DIR__ . '/Commands'); require base_path('routes/console.php'); } }