| {{ $customer->name }} |
@php $firstObject = $customer->objects->first(); @endphp
@if ($firstObject)
@if ($firstObject->street)
{{ $firstObject->street }}
@endif
{{ implode(' ', array_filter([$firstObject->zip, $firstObject->city])) }}
@if ($customer->objects->count() > 1)
(+{{ $customer->objects->count() - 1 }})
@endif
@endif
|
{{ $customer->contact_name }} |
@if ($customer->auto_notify_email)
{{ __('customer.badge_notify_yes') }}
@endif
@if ($customer->portal_enabled)
{{ __('customer.badge_portal') }}
@endif
|
{{ __('ui.button_edit') }}
|
@endforeach