command('inspire') // ->hourly(); $schedule->command('renewal:send')->weekdays()->at('13:00'); $schedule->command('client_renewal:send')->weekdays()->at('14:00'); $schedule->command('support_fees_renewal:send')->weekdays()->at('15:00'); $schedule->command('holidayalerts:send')->weekdays()->at('16:00'); } /** * Register the commands for the application. * * @return void */ protected function commands() { $this->load(__DIR__.'/Commands'); require base_path('routes/console.php'); } }