This commit is contained in:
@@ -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();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user