ORDER SUMMARY
@foreach($items as $item)
{{ $item->product->name }}
×{{ $item->qty }}
₹{{ number_format($item->product->price * $item->qty) }}
@endforeach
Have a coupon?
@if(session('coupon'))
{{ session('coupon.code') }} applied
@endif
Subtotal₹{{ number_format($subtotal) }}
@if($discount > 0)
Discount ({{ session('coupon.code') }})-₹{{ number_format($discount) }}
@endif
Delivery
{{ $shipping > 0 ? '₹'.$shipping : 'FREE' }}
Total₹{{ number_format($total) }}
🔒 Your payment is encrypted and secure. We never store card details.