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
+17
View File
@@ -0,0 +1,17 @@
<?php
namespace App\Jobs;
use App\Services\BookingService;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Foundation\Queue\Queueable;
class CheckNoShowBookings implements ShouldQueue
{
use Queueable;
public function handle(BookingService $bookingService): void
{
$bookingService->checkNoShows();
}
}