Your Cart {{ $count }} {{ Str::plural('item', $count) }} in your cart
{{-- Unavailable items warning --}} @if($unavailableMessage)
{{ $unavailableMessage }}
@endif @if($items->isEmpty()) {{-- Empty cart state --}}
Your cart is empty Looks like you haven't added any items yet. Continue Shopping
@else {{-- Cart items --}}
@foreach($items as $item)
{{-- Product image --}}
@if($item['image_url']) {{ $item['product_name'] }} @else
@endif
{{-- Product details --}}
{{ $item['product_name'] }}
@if($item['brand_name']) {{ $item['brand_name'] }} @endif @if($item['condition']) {{ $item['condition'] }} @endif
SKU: {{ $item['sku'] }}
{{-- Price --}}
${{ number_format($item['price'], 2) }}
{{-- Remove button --}}
@endforeach
{{-- Cart summary --}}
Subtotal ${{ number_format($subtotal, 2) }}
Shipping and taxes calculated at checkout
Continue Shopping Proceed to Checkout
Clear Cart
@endif