18 lines
390 B
PHP
18 lines
390 B
PHP
<?php
|
|
|
|
namespace App\Events;
|
|
|
|
use App\Models\GuestNotification;
|
|
use Illuminate\Broadcasting\InteractsWithSockets;
|
|
use Illuminate\Foundation\Events\Dispatchable;
|
|
use Illuminate\Queue\SerializesModels;
|
|
|
|
class GuestNotificationCreated
|
|
{
|
|
use Dispatchable;
|
|
use InteractsWithSockets;
|
|
use SerializesModels;
|
|
|
|
public function __construct(public GuestNotification $notification) {}
|
|
}
|