@extends('storefront.layout')
@section('title', 'Your cart')
@section('content')
Wholesale order
You're all set—you've reached the ${{ number_format($minimumOrder, 0) }} minimum. Continue to checkout to complete payment.
Free Shipping Across the U.S.
Review quantities, add any missing products, and move to checkout when the order is complete.
Current subtotal ${{ number_format($cart->subtotal(), 2) }} Minimum order: ${{ number_format($minimumOrder, 2) }}
Add ${{ number_format($minimumOrderRemaining, 2) }} more to proceed to checkout.
Your cart is empty. Start from the catalog and build your retail order by category.Your cart
@if (isset($minimumOrderMet) && $minimumOrderMet)
@foreach ($cart->items as $item)
Product
SKU
Unit price
Qty
Line total
@endforeach
@else
{{ $item->variant?->sku }}
${{ number_format((float) $item->unit_price, 2) }}
${{ number_format($item->lineTotal(), 2) }}
Need more for this order?
Return to the catalog and add more products to your cart.
Add more items
Subtotal
${{ number_format($cart->subtotal(), 2) }}