{{ $theOffice->name }}
@if($contacts = $theOffice->contacts)
@if(count($contacts) > 1)
@lang('contact.humans')
@else
@lang('contact.human')
@endif
@foreach($contacts as $contact)
@if($image = $contact->getFirstMedia('featured'))
@else
@endif
{{ $contact->name }}
{{ $contact->title }}
@endforeach
@endif
@endif