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

20 lines
377 B
PHP

<?php
namespace App\Enums;
enum GuestNotificationState: string
{
case DRAFT = 'draft';
case ACTIVE = 'active';
case ARCHIVED = 'archived';
public function label(): string
{
return match ($this) {
self::DRAFT => __('Entwurf'),
self::ACTIVE => __('Aktiv'),
self::ARCHIVED => __('Archiviert'),
};
}
}