__('Active'), self::AwaitingPayment => __('Awaiting payment'), self::PastDue => __('Payment overdue'), }; } public function color(): string { return match ($this) { self::Active => 'emerald', self::AwaitingPayment => 'amber', self::PastDue => 'red', }; } }