@extends('frontend.theme_2.app') @section('title', 'Our Shops') @push('styles') @endpush @section('content')

@if($shops->total() > 0) {{__('showing') }} {{ $shops->firstItem() }} – {{ $shops->lastItem() }} of {{ $shops->total() }} {{__('results') }} @else {{__('showing') }} 0 {{__('results') }} @endif

{{__('search') }}
@if(isset($locations) && $locations->count() > 0)
{{__('location') }}
@foreach ($locations as $location)
@endforeach
@endif @if(isset($vendors) && $vendors->count() > 0)
{{__('vendor') }}
@foreach ($vendors as $vendor)
@endforeach
@endif
{{__('reviews') }}
@for ($i = 5; $i >= 1; $i--)
@endfor
@include('frontend.shops.partials.shop_items', ['shops' => $shops])
@if($shops->hasMorePages()) @endif
@endsection @push('scripts') @endpush