29 lines
589 B
PHP
29 lines
589 B
PHP
<?php
|
|
|
|
namespace App\Enums;
|
|
|
|
use Filament\Support\Contracts\HasColor;
|
|
use Filament\Support\Contracts\HasLabel;
|
|
|
|
enum IsActive: string implements HasColor, HasLabel
|
|
{
|
|
case Active = 'active';
|
|
case Inactive = 'inactive';
|
|
|
|
public function getLabel(): ?string
|
|
{
|
|
return match ($this) {
|
|
self::Active => 'Aktif',
|
|
self::Inactive => 'Tidak Aktif',
|
|
};
|
|
}
|
|
|
|
public function getColor(): string|array|null
|
|
{
|
|
return match ($this) {
|
|
self::Active => 'success',
|
|
self::Inactive => 'danger',
|
|
};
|
|
}
|
|
}
|