command('inspire')->hourly(); $schedule->command('app:cleanup-temp-files')->everyThirtyMinutes(); $schedule->command('app:remove-stale-media-jobs')->everyThirtyMinutes(); } /** * Register the commands for the application. * * @return void */ protected function commands(): void { $this->load(__DIR__ . '/Commands'); require base_path('routes/console.php'); } }