'Menunggu Pengambilan', self::PICKED_UP => 'Sudah Diambil', self::EXPIRED => 'Kedaluwarsa', }; } public function color(): string { return match ($this) { self::WAITING_PICKUP => 'yellow', self::PICKED_UP => 'emerald', self::EXPIRED => 'red', }; } }