@foreach ($shops as $shop) @if ($shop->status == 1)
{{ $shop->name ?? '' }}
@isset($shop->address) Address

{{ $shop->address ?? '' }}

@endisset @isset($shop->phone) Phone

{{ $shop->phone ?? '' }}

@endisset @if (isset($shop->open_from) && isset($shop->open_to))

Opening Hours:
{{ !empty($shop->open_from) ? date('h:i A',strtotime($shop->open_from)) : '-' ?? ''}} to {{ !empty($shop->open_to) ? date('h:i A',strtotime($shop->open_to)) : '-' ?? ''}} Daily

@endif @isset($shop->description)

Description
{{ $shop->description ?? '' }}

@endisset
@if (isset($shop->map_location)) {!! $shop->map_location !!} @else @endif
@endif @endforeach

Visit us

Schedule a visit for repairs, help or support.

@foreach($shops as $shop) @if($shop->status == 0)

{{ $shop->name ?? '' }}

@if (isset($shop->open_from) && isset($shop->open_to)) Opening Hours:
{{ !empty($shop->open_from) ? date('h:i A',strtotime($shop->open_from)) : '-' ?? ''}} to {{ !empty($shop->open_to) ? date('h:i A',strtotime($shop->open_to)) : '-' ?? ''}} Daily
@endif

{!! $shop->description ?? '' !!}

@endif @endforeach
@endsection @section('scripts') @endsection