*/ protected $commands = [ LetterSendAction::class, InitializeAction::class, InitializeMembers::class, ]; /** * Define the application's command schedule. * * @return void */ protected function schedule(Schedule $schedule) { $schedule->command(PruneCommand::class, ['--hours' => 168])->daily(); // 168h = 7 Tage } /** * Register the commands for the application. * * @return void */ protected function commands() { $this->load(__DIR__.'/Commands'); require base_path('routes/console.php'); } }