initial commit

This commit is contained in:
bastien
2026-06-28 12:29:53 +02:00
parent 03e85d2f9d
commit b2443b654c
220 changed files with 24969 additions and 1 deletions
+16
View File
@@ -0,0 +1,16 @@
<?php
use App\Jobs\CheckNoShowBookings;
use App\Jobs\GenerateDailyStats;
use App\Jobs\RefreshOfflineMachines;
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 CheckNoShowBookings)->everyFiveMinutes();
Schedule::job(new RefreshOfflineMachines)->everyFiveMinutes();
Schedule::job(new GenerateDailyStats)->dailyAt('01:00');