'Beli', self::DISTRIBUTOR => 'Distributor', self::AGENT => 'Agen', self::RESELLER => 'Reseller', self::RETAIL => 'Retail', }; } public static function options(): array { return collect(self::cases())->map(fn ($case) => [ 'value' => $case->value, 'label' => $case->label(), ])->toArray(); } }