{{ __('shop::app.products.whoops') }}
{{ __('shop::app.search.no-results') }}
{{ $results->total() }}
{{ ($results->total() == 1) ? __('shop::app.search.found-result') : __('shop::app.search.found-results') }}
@foreach ($results as $productFlat)
@include('shop::products.list.card', ['product' => $productFlat->product])
@endforeach
@include('ui::datagrid.pagination')
@endif