@extends('products.list')
@section('results')
@if (is_object($products) && $products->count())
@foreach ($products as $product)
@if (($loop->index + 1) % 4 == 0)
@endif
@endforeach
@elseif (!empty($query))
There are no products that match your search terms.
@endif
@endsection