'Publish', self::DRAFT => 'Draft', self::ARCHIVED => 'Arsip', }; } public function color(): string { return match ($this) { self::PUBLISHED => 'emerald', self::DRAFT => 'yellow', self::ARCHIVED => 'rose', }; } }