command(UpdateNewsFromRemote::class)->daily(); } if ( config('services.tmdb.key') && (settings('content.force_season_update') || settings('content.title_provider') === 'tmdb') ) { $schedule ->command(UpdateSeasonsFromRemote::class) ->everyFourHours(); } if (config('common.site.demo')) { $schedule->command(CleanDemoSite::class)->daily(); } $schedule->command(UpdateAllChannelsContent::class)->daily(); } protected function commands(): void { $this->load(__DIR__ . '/Commands'); require base_path('routes/console.php'); } }