@if ($products->isNotEmpty())
{{ $title }}
@foreach($products->chunk(3) as $chunk)
@foreach($chunk as $product)
{{ $product['title'] }}

{{ $product['title'] }}

@endforeach
@endforeach
@endif