@if (Cart::instance('cart')->count() > 0)
@if (count($crossSellProducts) > 0)
@foreach ($crossSellProducts as $crossSellProduct)
{!! Theme::partial('product-item', ['product' => $crossSellProduct]) !!}
@endforeach
@endif
@else
{{ __('Your cart is empty!') }}
@endif