command('document:update')->everyFifteenMinutes()->withoutOverlapping(); $schedule->command('feed:update')->everyFifteenMinutes()->withoutOverlapping(); $schedule->command('feeditems:purgeread')->daily(); } /** * Register the commands for the application. */ protected function commands() { $this->load(__DIR__.'/Commands'); require base_path('routes/console.php'); } }