Shopping cart
Order details
Payment
2 items
@php
$subtotal = 0;
@endphp
@foreach ($cartItems as $item)
@php
$images = explode(',', $item->product->images);
$itemSubtotal = $item->product->price * $item->quantity;
$subtotal += $itemSubtotal;
@endphp
${{ $item->product->price }}
{{ $item->product->name }}
Qty: {{ $item->quantity }}
@endforeach
Subtotal
${{ $subtotal }}
Delivery
{{ $shippingCharge == 0 ? 'Free' : '$' . $shippingCharge }}
@if ($discount_percentage > 0)
Coupon Discount ({{ $discount_percentage }}%)
- ${{ $discount_amount }}
@endif
Total to pay
${{ $bill }}
Complimentary Shipping & Returns