Files
fotospiel-app/app/Events/GuestNotificationCreated.php
2025-11-12 16:56:50 +01:00

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) {}
}