@php $profileName = $profile['full_name'] ?? $profile['name'] ?? 'Profile'; $profileAge = !empty($profile['age_years']) ? $profile['age_years'] . ' yrs' : null; $city = $profile['city_living_in'] ?? null; $state = $profile['state_living_in'] ?? null; $country = $profile['country_living_in'] ?? null; $location = trim(implode(', ', array_filter([$city, $state, $country]))); $occupation = $profile['occupation'] ?? null; $religion = $profile['religion'] ?? null; $height = $profile['height'] ?? null; $education = $profile['education'] ?? null; $verified = !empty($profile['mem_type']) && $profile['mem_type'] === 'Yes'; @endphp
{{ $profileName }} @if($verified) @endif

{{ $profileName }} @if($verified) @endif

@if($location)

{{ $location }}

@endif @if($occupation || $profileAge)

@if($occupation) {{ $occupation }} @if($profileAge) • {{ $profileAge }} @endif @else {{ $profileAge }} @endif

@endif
@if($religion) {{ $religion }} @endif @if($height) {{ $height }} @endif @if($education) {{ $education }} @endif