app/Console/Kernel.php
use Illuminate\Foundation\Console\Kernel as ConsoleKernel; class Kernel extends ConsoleKernel{ // protected function schedule(Schedule $schedule): void { $schedule->command('links:check')->hourly(); $schedule->command('queue:work --daemon --once') ->withoutOverlapping(); if (config('backup.backup.enabled')) { $schedule->command('backup:clean')->daily()->at('01:00'); $schedule->command('backup:run')->daily()->at('02:00'); } } //}