<?php
namespace App\Events;
use App\Models\Event;
use Illuminate\Broadcasting\InteractsWithSockets;
use Illuminate\Foundation\Events\Dispatchable;
use Illuminate\Queue\SerializesModels;
class EventReminderEvent
{
use Dispatchable, InteractsWithSockets, SerializesModels;
public $event;
public function __construct(Event $event)
{
$this->event = $event;
}
}