@extends('layout.app')
@section('page-title', $title)
@section('breadcrumb')
@if($error)
We're sorry, there was an error with processing your query. Please,
contact us and our knowledgeable representatives
will be happy to help.
@elseif($nbHits === 0)
Your search
{{ $query }} did not match any documents.
@else
@include('partials._product_list_layout', ['products' => $hits])
@endif
@endsection
@section('modals')
@if($nbHits > 0)
@include('partials.modals._quick_view')
@include('partials._filter', ['products' => $hits])
@endif
@if($GLOBALS['session']->admin)
@include('partials.modals._admin_product')
@endif
@endsection
@push('after-foot-js')
@if($nbHits > 0)
@endif
@endpush