File "BookingUpdatedEvent.php"

Full Path: /home/bettaeza/flyinsyria.com/Booking/Events/BookingUpdatedEvent.php
File size: 308 bytes
MIME-type: text/x-php
Charset: utf-8

<?php
namespace Modules\Booking\Events;

use Modules\Booking\Models\Booking;
use Illuminate\Queue\SerializesModels;

class BookingUpdatedEvent
{
    use SerializesModels;
    public $booking;

    public function __construct(Booking $booking)
    {
        $this->booking = $booking;
    }
}