1protected function schedule(Schedule $schedule)
2 {
3 $schedule->call(function () {
4
5 })->->monthlyOn(23, '13:00');
6 }
7
1 $schedule->command('command')->when(function (){
2 return Carbon::create(2020,4,28,13)->isPast();
3 });
4