| 12345678910111213141516171819202122232425262728293031323334 | 
							- <?php
 - 
 - namespace App\Enums\Accounting;
 - 
 - use Filament\Support\Contracts\HasColor;
 - use Filament\Support\Contracts\HasLabel;
 - 
 - enum EstimateStatus: string implements HasColor, HasLabel
 - {
 -     case Draft = 'draft';
 -     case Sent = 'sent';
 -     case Viewed = 'viewed';
 -     case Unsent = 'unsent';
 -     case Accepted = 'accepted';
 -     case Declined = 'declined';
 -     case Expired = 'expired';
 -     case Converted = 'converted';
 - 
 -     public function getLabel(): ?string
 -     {
 -         return $this->name;
 -     }
 - 
 -     public function getColor(): string | array | null
 -     {
 -         return match ($this) {
 -             self::Draft, self::Unsent => 'gray',
 -             self::Sent, self::Viewed => 'primary',
 -             self::Accepted, self::Converted => 'success',
 -             self::Declined => 'danger',
 -             self::Expired => 'warning',
 -         };
 -     }
 - }
 
 
  |