'#5b69bc', static::Completed => '#21b978', }; } public function text(): string { return static::texts()[$this->value] ?? 'Unknown'; } public static function colors(): array { return [ static::Pending->value => '#5b69bc', static::Completed->value => '#21b978', ]; } public static function texts(): array { return [ static::Pending->value => '待付款', static::Completed->value => '已付款', ]; } }