'Draft', self::POSTED => 'Posted', self::VOID => 'Voided', self::PAID => 'Paid', }; } public function color(): string { return match ($this) { self::DRAFT => 'gray', self::POSTED => 'green', self::VOID => 'zinc', self::PAID => 'blue', }; } }