command('forms:database-cleanup')->hourly(); $schedule->command('forms:integration-events-cleanup')->daily(); if (config('app.self_hosted')) { $schedule->command('app:scheduler-status --mode=record')->everyMinute(); } } /** * Register the commands for the application. * * @return void */ protected function commands() { $this->load(__DIR__ . '/Commands'); require base_path('routes/console.php'); } }