2025-10-13 14:57:11 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
use Illuminate\Foundation\Inspiring;
|
|
|
|
|
use Illuminate\Support\Facades\Artisan;
|
2026-01-08 02:09:52 +01:00
|
|
|
use Illuminate\Support\Facades\Schedule;
|
2025-10-13 14:57:11 +02:00
|
|
|
|
|
|
|
|
Artisan::command('inspire', function () {
|
|
|
|
|
$this->comment(Inspiring::quote());
|
|
|
|
|
})->purpose('Display an inspiring quote')->hourly();
|
2026-01-08 02:09:52 +01:00
|
|
|
|
|
|
|
|
Schedule::command('demo:purge')
|
|
|
|
|
->dailyAt('03:00')
|
|
|
|
|
->when(fn () => is_mode_demo());
|