2016-07-05 16:09:52 +03:00
|
|
|
<tr>
|
2018-03-30 14:33:28 +03:00
|
|
|
<td>{{ trans('texts.vendor') }}</td>
|
2016-07-05 16:09:52 +03:00
|
|
|
@if ($multiUser)
|
|
|
|
|
<td>{{ trans('texts.user') }}</td>
|
|
|
|
|
@endif
|
|
|
|
|
<td>{{ trans('texts.first_name') }}</td>
|
|
|
|
|
<td>{{ trans('texts.last_name') }}</td>
|
|
|
|
|
<td>{{ trans('texts.email') }}</td>
|
|
|
|
|
<td>{{ trans('texts.phone') }}</td>
|
|
|
|
|
</tr>
|
|
|
|
|
|
2016-09-19 09:59:31 +03:00
|
|
|
@foreach ($vendor_contacts as $contact)
|
2016-09-19 10:18:06 +03:00
|
|
|
@if (!$contact->vendor->is_deleted)
|
2016-07-05 16:09:52 +03:00
|
|
|
<tr>
|
2016-09-19 10:18:06 +03:00
|
|
|
<td>{{ $contact->vendor->getDisplayName() }}</td>
|
2016-07-05 16:09:52 +03:00
|
|
|
@if ($multiUser)
|
2016-09-19 10:18:06 +03:00
|
|
|
<td>{{ $contact->user->getDisplayName() }}</td>
|
2016-07-05 16:09:52 +03:00
|
|
|
@endif
|
2016-09-19 10:18:06 +03:00
|
|
|
<td>{{ $contact->first_name }}</td>
|
|
|
|
|
<td>{{ $contact->last_name }}</td>
|
|
|
|
|
<td>{{ $contact->email }}</td>
|
|
|
|
|
<td>{{ $contact->phone }}</td>
|
2016-07-05 16:09:52 +03:00
|
|
|
</tr>
|
|
|
|
|
@endif
|
|
|
|
|
@endforeach
|