{{ $client->name }}
{{ $client->email }}
{{ $client->country_id ? $client->country?->name_site : '-----' }}
{{ $client->phone }}
{{ $client->birth_date ?? __('client.none') }}
{{$client->addresses->isNotEmpty() ? $client->addresses->first()->address : __('client.none') }}
{{ $client->addresses->first()->city }}
{{ $client->addresses->first()->state }}
{{ $client->addresses->first()->postal_code }}
{{ $client->is_active == 1 ? __('client.yes') : __('client.no') }}
@lang('client.none')
@endif