@include('content.website.components.product-filters')
@include('content.website.components.listing-sort')
@foreach ($products as $product)
@include('content.website.components.product-card', [
'product' => $product,
'newProduct' => $newProduct ?? null,
])
@endforeach
@if (method_exists($products, 'links'))
{{ $products->links() }}
@endif