{{ __('Search Results') }}

@if(!empty($search))

{{ __('Searching for') }}: {{ $search }}

@endif
@if($products->isNotEmpty())
@foreach ($products as $product)
{{ $product->name }}
@if($product->short_desc)

{!! $product->short_desc !!}

@endif
@endforeach
@else

{{ __('No results found') }}

@if(!empty($search))

{{ __('No products found matching') }}: "{{ $search }}"

@endif
@endif