@extends('user.layout') @section('profile-title') {{ $user->name }}'s User Shops @endsection @section('profile-content') {!! breadcrumbs(['Users' => 'users', $user->name => $user->url, 'Shops' => $user->url . '/shops']) !!}

{!! $user->displayName !!}'s User Shops

@if ($shops->count())
@foreach ($shops as $shop)
@if ($shop->has_image)
{{ $shop->name }}
@endif
@endforeach
@else

No shops found.

@endif @endsection