laravel:task-scheduling
Installation
SKILL.md
Task Scheduling
Run scheduled tasks predictably across environments.
Commands
// app/Console/Kernel.php
protected function schedule(Schedule $schedule): void
{
$schedule->command('reports:daily')
->dailyAt('01:00')
->withoutOverlapping()
->onOneServer()
->runInBackground()
->evenInMaintenanceMode();
}