feat: add guest notification center

This commit is contained in:
Codex Agent
2025-11-12 16:56:50 +01:00
parent 062932ce38
commit 4495ac1895
27 changed files with 2042 additions and 64 deletions

View File

@@ -0,0 +1,17 @@
<?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) {}
}