@extends('main') @section('title') @endsection @section('styles') @endsection @section('content')
{{ __('Search Results For') }} "{{ Request::get('s') }}"
@if (count($products) > 0)
    @foreach ($products as $key => $product) @livewire('front-end.product.item-list' , ['product' => $product], key($loop->index)) @endforeach
{{ $products->links() }} @else

{!! __('No Results') !!}



@endif
@if (isDesktop()) @endif
@endsection @section('scripts') {!! Html::script(Theme::current()->assetPath.'/js/jquery.matchHeight.min.js') !!} @endsection