| {{ trans('texts.name') }}@if ($multiUser) | {{ trans('texts.user') }}@endif | {{ trans('texts.balance') }} | {{ trans('texts.paid_to_date') }} | {{ trans('texts.address1') }} | {{ trans('texts.address2') }} | {{ trans('texts.city') }} | {{ trans('texts.state') }} | {{ trans('texts.postal_code') }} | {{ trans('texts.country') }} | {{ trans('texts.id_number') }} | {{ trans('texts.vat_number') }} | {{ trans('texts.website') }} | {{ trans('texts.work_phone') }} | {{ trans('texts.currency') }} | {{ trans('texts.public_notes') }} | {{ trans('texts.private_notes') }}@if ($account->custom_client_label1) | {{ $account->custom_client_label1 }}@endif
    @if ($account->custom_client_label2) | {{ $account->custom_client_label2 }}@endif | {{ trans('texts.first_name') }} | {{ trans('texts.last_name') }} | {{ trans('texts.email') }} | {{ trans('texts.phone') }}@if ($account->custom_contact_label1) | {{ $account->custom_contact_label1 }}@endif
    @if ($account->custom_contact_label2) | {{ $account->custom_contact_label2 }}@endif | 
@foreach ($clients as $client)
    
        | {{ $client->getDisplayName() }}@if ($multiUser) | {{ $client->user->getDisplayName() }}@endif | {{ $account->formatMoney($client->balance, $client) }} | {{ $account->formatMoney($client->paid_to_date, $client) }} | {{ $client->address1 }} | {{ $client->address2 }} | {{ $client->city }} | {{ $client->state }} | {{ $client->postal_code }} | {{ $client->present()->country }} | {{ $client->id_number }} | {{ $client->vat_number }} | {{ $client->website }} | {{ $client->work_phone }} | {{ $client->currency ? $client->currency->code : '' }} | {{ $client->public_notes }} | {{ $client->private_notes }}@if ($account->custom_client_label1) | {{ $client->custom_value1 }}@endif
        @if ($account->custom_client_label2) | {{ $client->custom_value2 }}@endif | {{ $client->contacts[0]->first_name }} | {{ $client->contacts[0]->last_name }} | {{ $client->contacts[0]->email }} | {{ $client->contacts[0]->phone }}@if ($account->custom_contact_label1) | {{ $client->contacts[0]->custom_value1 }}@endif
        @if ($account->custom_contact_label2) | {{ $client->contacts[0]->custom_value2 }}@endif | 
@endforeach