job(new NotifyUsersManualModeOnJob) ->dailyAt('7:00') ->sentryMonitor(); $schedule->job(new RemoveOldIpAddressesFromLogsJob) ->dailyAt('0:30') ->sentryMonitor(); $schedule->job(new ResetAvailabilityMinutesJob) ->monthlyOn(1, '0:00') ->sentryMonitor(); $schedule->job(new UpdateAvailabilityWithSchedulesJob) ->everyThirtyMinutes() ->sentryMonitor(); } /** * Register the commands for the application. */ protected function commands(): void { $this->load(__DIR__.'/Commands'); require base_path('routes/console.php'); } }