command('book:update')->dailyAt('06:00'); //$schedule->command('book:update')->dailyAt('18:00'); $schedule->command('book:update')->hourly()->when(function (){ $now_hour = date('G'); if($now_hour %4 ==0){ return true; } return false; }); //$schedule->command('checkOrderStatus')->everyMinute(); } }