{{ trans('texts.vendor') }}
@if ($multiUser)
{{ trans('texts.user') }}
@endif
{{ trans('texts.first_name') }}
{{ trans('texts.last_name') }}
{{ trans('texts.email') }}
{{ trans('texts.phone') }}
@foreach ($vendor_contacts as $contact)
@if (!$contact->vendor->is_deleted)
{{ $contact->vendor->getDisplayName() }}
@if ($multiUser)
{{ $contact->user->getDisplayName() }}
@endif
{{ $contact->first_name }}
{{ $contact->last_name }}
{{ $contact->email }}
{{ $contact->phone }}
@endif
@endforeach