{{ trans_choice(':count result|:count results', $profiles->total()) }}
{{ __('Filters') }} @if ($hasFilters) {{ $filterCount }} @endif
{{ $profile->user->name }} @php $cardType = $profile->profile_type ?? 'self'; $cardPill = match($cardType) { 'parent' => ['label' => __('Parent'), 'class' => 'pill-parent'], 'partner' => ['label' => __('Partner'), 'class' => 'pill-partner'], 'pro' => ['label' => 'PRO', 'class' => 'pill-pro'], default => null, }; @endphp @if ($cardPill) {{ $cardPill['label'] }} @endif
#{{ $profile->user->id }}
{{ collect([ $profile->gender ? __($profile->gender) : null, $profile->age !== null ? $profile->age . ' ' . __('years') : null, ])->filter()->implode(' Β· ') }}
@if ($profile->city || $profile->zip_code){{ collect([$profile->zip_code, $profile->city])->filter()->implode(' Β· ') }}
@endif @if ($profile->country){{ __(\App\Helpers\CountryHelper::name($profile->country)) }}
@endif{{ __('No profiles found.') }}
@endforelse