{{ trans('texts.client') }} |
@if ($multiUser)
{{ trans('texts.user') }} |
@endif
{{ trans('texts.first_name') }} |
{{ trans('texts.last_name') }} |
{{ trans('texts.email') }} |
{{ trans('texts.phone') }} |
@if ($account->custom_contact_label1)
{{ $account->present()->customContactLabel1 }} |
@endif
@if ($account->custom_contact_label2)
{{ $account->present()->customContactLabel2 }} |
@endif
@foreach ($contacts as $contact)
@if (!$contact->client->is_deleted)
{{ $contact->client->getDisplayName() }} |
@if ($multiUser)
{{ $contact->user->getDisplayName() }} |
@endif
{{ $contact->first_name }} |
{{ $contact->last_name }} |
{{ $contact->email }} |
{{ $contact->phone }} |
@if ($account->custom_contact_label1)
{{ $contact->custom_value1 }} |
@endif
@if ($account->custom_contact_label2)
{{ $contact->custom_value2 }} |
@endif
@endif
@endforeach