2026-05-20 18:25:15 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
use Illuminate\Foundation\Inspiring;
|
|
|
|
|
use Illuminate\Support\Facades\Artisan;
|
|
|
|
|
|
|
|
|
|
Artisan::command('inspire', function () {
|
|
|
|
|
$this->comment(Inspiring::quote());
|
|
|
|
|
})->purpose('Display an inspiring quote');
|
2026-06-02 20:54:10 +02:00
|
|
|
|
|
|
|
|
Schedule::command('entries:purge-rejected')->daily();
|
2026-06-16 16:21:43 +02:00
|
|
|
Schedule::command('entries:purge-featured')->daily();
|
2026-06-28 14:07:20 +02:00
|
|
|
Schedule::command('sitemap:generate')->daily();
|