simedkom/app/Enums/UxStyle.php

20 lines
390 B
PHP

<?php
namespace App\Enums;
use Filament\Support\Contracts\HasLabel;
enum UxStyle: string implements HasLabel
{
case CHEERFUL = 'cheerful';
case FORMAL = 'formal';
public function getLabel(): ?string
{
return match ($this) {
self::CHEERFUL => 'Ceria (Banyak Emoji) 🚀✨',
self::FORMAL => 'Formal & Profesional 💼',
};
}
}