command('today:schedule')->daily(); $schedule->command('today:run')->everyMinute(); $schedule->command('domain:update_expired_at')->daily(); # update domain expired_at $schedule->command('domain:update_ssl_expired_at')->daily(); # update SSL expired_at } /** * Register the commands for the application. * * @return void */ protected function commands() { $this->load(__DIR__.'/Commands'); require base_path('routes/console.php'); } }