Laravel the skip method in scheduler
You can use skip
in your commands to skip an execution
1$schedule->command('emails:send')->daily()->skip(function () {2 return Calendar::isHoliday();3});
Tip given by @cosmeescobedo
Laravel the skip method in scheduler
You can use skip
in your commands to skip an execution
1$schedule->command('emails:send')->daily()->skip(function () {2 return Calendar::isHoliday();3});
Tip given by @cosmeescobedo