command('sitemap:generate')->dailyAt('03:00'); // Получение новостей из Email каждые 5 минут $schedule->command(FetchEmailNewsCommand::class) ->everyFiveMinutes() ->withoutOverlapping() ->onOneServer(); } protected $commands = [ InitRoles::class, FetchEmailNewsCommand::class, ]; /** * Register the commands for the application. * * @return void */ protected function commands() { $this->loadCommandsForConsoleKernel(); $this->loadRoutesForConsoleKernel(); } }