'Performance', self::Holiday => 'Holiday', self::Retention => 'Retention', self::Other => 'Other', }; } public function color(): string { return match ($this) { self::Performance => 'success', self::Holiday => 'primary', self::Retention => 'info', self::Other => 'gray', }; } public function icon(): string { return match ($this) { self::Performance => 'heroicon-o-star', self::Holiday => 'heroicon-o-gift', self::Retention => 'heroicon-o-hand-raised', self::Other => 'heroicon-o-banknotes', }; } }