Files
HexaHost-Panel/app/Enums/UserRole.php
2026-05-17 13:26:14 +02:00

18 lines
287 B
PHP

<?php
namespace App\Enums;
enum UserRole: string
{
case Admin = 'admin';
case Customer = 'customer';
public function label(): string
{
return match ($this) {
self::Admin => 'Administrator',
self::Customer => 'Kunde',
};
}
}