{{ __('Shopping Cart') }}

@csrf @if (count($products) > 0)
@foreach(Cart::instance('cart')->content() as $key => $cartItem) @php $product = $products->find($cartItem->id); @endphp @if (!empty($product)) @endif @endforeach
{{ __("Product's name") }} {{ __('Price') }} {{ __('Quantity') }} {{ __('Total') }}
{{ $product->original_product->name }} @if ($product->isOutOfStock()) ({!! $product->stock_status_html !!}) @endif @if (is_plugin_active('marketplace') && $product->original_product->store->id)

{{ __('Sold by') }}: {{ $product->original_product->store->name }}

@endif

{{ $cartItem->options['attributes'] ?? '' }}

@if (!empty($cartItem->options['options'])) {!! render_product_options_info($cartItem->options['options'], $product, true) !!} @endif @if (!empty($cartItem->options['extras']) && is_array($cartItem->options['extras'])) @foreach($cartItem->options['extras'] as $option) @if (!empty($option['key']) && !empty($option['value']))

{{ $option['key'] }}: {{ $option['value'] }}

@endif @endforeach @endif
{{ format_price($cartItem->price) }} @if ($product->front_sale_price != $product->price) {{ format_price($product->price) }} @endif
{{ format_price($cartItem->price * $cartItem->qty) }}
@else

{{ __('Your cart is empty!') }}

@endif
@if (count($products) > 0) @endif {!! Theme::partial('cross-sell-products', compact('crossSellProducts')) !!}