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