@if (count($crossSellProducts) > 0)

{{ __('Customers who bought this item also bought') }}

@php $crossSellProducts->loadMissing(['productLabels']); if (is_plugin_active('marketplace')) { $crossSellProducts->loadMissing(['store', 'store.slugable']); } @endphp @foreach($crossSellProducts as $crossSellProduct)
{!! Theme::partial('product-item', ['product' => $crossSellProduct]) !!}
@endforeach
@endif