42 lines
912 B
PHP
42 lines
912 B
PHP
<?php
|
|
|
|
namespace App\Enums;
|
|
|
|
use App\Traits\Enum\WithComment;
|
|
use App\Traits\Enum\WithValue;
|
|
use Filament\Support\Contracts\HasLabel;
|
|
|
|
enum NewsStatus: int implements HasLabel
|
|
{
|
|
use WithComment, WithValue;
|
|
|
|
case DRAFT = 1;
|
|
case PUBLISHED = 2;
|
|
case ARCHIVED = 3;
|
|
|
|
public function getLabel(): ?string
|
|
{
|
|
return match ($this) {
|
|
self::DRAFT => 'Draft',
|
|
self::PUBLISHED => 'Publish',
|
|
self::ARCHIVED => 'Arsip',
|
|
};
|
|
}
|
|
|
|
public function getColor(): string|array|null
|
|
{
|
|
return match ($this) {
|
|
self::DRAFT => 'warning',
|
|
self::PUBLISHED => 'success',
|
|
self::ARCHIVED => 'gray',
|
|
};
|
|
}
|
|
|
|
public static function options(): array
|
|
{
|
|
return collect(self::cases())
|
|
->mapWithKeys(fn ($case) => [$case->value => $case->getLabel()])
|
|
->toArray();
|
|
}
|
|
}
|