{{-- Popovers: initBootstrapPopoversIn in app.js (viewModal). --}} @php $listingPrefs = is_string($contact_customize_listing ?? null) ? json_decode($contact_customize_listing, true) : (is_array($contact_customize_listing ?? null) ? $contact_customize_listing : []); $selectedIds = $listingPrefs['custom_field_ids'] ?? []; $normalizedSelected = array_map(static function ($v) { return (string) $v; }, (array) $selectedIds); $chosenFieldId = null; foreach ($custom_fields as $cf) { if (in_array((string) $cf->id, $normalizedSelected, true)) { $chosenFieldId = $cf->id; break; } } $noneSelected = $chosenFieldId === null; @endphp