@if($cartItems->count() > 0)
@endforeach
@else
@endif
Shopping Cart ({{ $cartItems->count() }} {{ Str::plural('item', $cartItems->count()) }})
@foreach($cartItems as $item)₹{{ number_format($item->price, 2) }}
per item
₹{{ number_format($item->price * $item->quantity, 2) }}
Order Summary
Subtotal:
₹{{ number_format($total, 2) }}
Tax (8%):
₹{{ number_format($total * 0.08, 2) }}
Shipping:
FREE
Total:
₹{{ number_format($total * 1.08, 2) }}
Proceed to Checkout
Secure checkout with Razorpay