@if(empty($items))

🛒

Your cart is empty

← Continue shopping
@else
@foreach($items as $item)
{{-- Image --}}
@if($item['image']) {{ $item['name'] }} @else 📷 @endif
{{-- Details --}}

{{ $item['name'] }}

@if($item['variant_label'])

{{ $item['variant_label'] }}

@endif @if($item['sku'])

SKU: {{ $item['sku'] }}

@endif

{{ $currencySymbol }}{{ number_format($item['price'], 2) }} each

{{-- Quantity --}}
{{ $item['quantity'] }}
{{-- Subtotal --}}

{{ $currencySymbol }}{{ number_format($item['price'] * $item['quantity'], 2) }}

@endforeach
{{-- Summary --}}
Subtotal {{ $currencySymbol }}{{ number_format($subtotal, 2) }}

Shipping calculated at checkout.

Proceed to Checkout ← Continue shopping
@endif