command('payments:check-accounts')->dailyAt('02:00'); // Jobs 2, 3, 4: Die Befehle aus deinem alten Shell-Skript. // Werden nacheinander täglich zu unterschiedlichen Zeiten ausgeführt, // um die Serverlast zu verteilen. $schedule->command('store-optimized 0 0')->dailyAt('03:00'); $schedule->command('user:cleanup')->dailyAt('03:30'); $schedule->command('user:make_abo_order')->dailyAt('04:00'); } /** * Register the commands for the application. * * @return void */ protected function commands() { $this->load(__DIR__ . '/Commands'); require base_path('routes/console.php'); } }