laravel-task-scheduling
Originally fromnoartem/laravel-vue-skills
Installation
SKILL.md
Task Scheduling
Defining Schedules in routes/console.php
<?php
use Illuminate\Support\Facades\Schedule;
// Schedule an Artisan command
Schedule::command('reports:generate')->daily();
// Schedule a job
Schedule::job(new ProcessDailyMetrics)->dailyAt('01:00');
// Schedule a closure
Schedule::call(function () {
Cache::flush();
})->weekly();