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

18 lines
309 B
PHP

<?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'),
};
}
}