command('caldav:sync') ->everyMinute() ->withoutOverlapping(); // Run synchronously on schedule to support environments without queue workers $schedule->command('invoices:check-due') ->dailyAt('3:00') ->withoutOverlapping(); } /** * Register the commands for the application. */ protected function commands(): void { $this->load(__DIR__ . '/Commands'); require base_path('routes/console.php'); } }