@foreach ($users as $user) @php $shop = $user->ownerOfShops->first(); @endphp
@if ($user->profile_picture) {{ $user->full_name }} @else {{ $user->full_name }} @endif

{{ $user->full_name ?? $user->username }}

@if ($shop && $shop->name)

{{ $shop->name }}

@else

N/A

@endif

cod. {{ $user->code }}

@if ($shop && $shop->contact)

{{ $shop->contact->city }} {{ $shop->contact->address ? $shop->contact->address . ',' : '' }} {{ $shop->contact->postal_code }}

@else

N/A

@endif
@endforeach