checks cron

This commit is contained in:
2026-02-19 15:16:33 +01:00
parent 953afd02e6
commit 9d61186c72
3 changed files with 30 additions and 0 deletions

View File

@@ -1,8 +1,12 @@
<?php
use App\Jobs\LogAppVersionJob;
use Illuminate\Foundation\Inspiring;
use Illuminate\Support\Facades\Artisan;
use Illuminate\Support\Facades\Schedule;
Artisan::command('inspire', function () {
$this->comment(Inspiring::quote());
})->purpose('Display an inspiring quote');
Schedule::job(new LogAppVersionJob)->everyMinute();