How can I check/solve my issue with scheduler.
Q: If I set multiple command as per below but it work only for first command. Other than first command not work as specified time.
protected function schedule(Schedule $schedule)
{
$schedule->command('emails:say-morning')
->dailyAt('08:00');
$schedule->command('emails:say-evening')
->dailyAt('17:00');
$schedule->command('emails:happy-weekend')
->weekly()->fridays()->at('19:00');
}
I made this based on https://laravel.com/docs/5.3/scheduling.
Is there any stuff that I remain to do here? Please help!
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community