Select products to add to your order. Minimum order amount: R500
Product | Price | Quantity | Subtotal | Action |
---|---|---|---|---|
{{ $item['name'] }} | R{{ number_format($item['price'], 2) }} | {{ $item['quantity'] }} | R{{ number_format($item['subtotal'], 2) }} | |
Total: | R{{ number_format($cartTotal, 2) }} |
Your current balance: R{{ number_format(auth()->user()->balance, 2) }}
@if($cartTotal < 500)Minimum order amount is R500
@elseif(auth()->user()->balance < $cartTotal)Insufficient balance
@endifYour cart is empty. Add products below to start your order.
@endif{{ Str::limit($product->description, 150) }}