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\Enums;
enum GuestNotificationAudience: string
{
case ALL = 'all';
case GUEST = 'guest';
public function label(): string
{
return match ($this) {
self::ALL => __('Alle Gäste'),
self::GUEST => __('Individuelle Gäste'),
};
}
}