Order Summary
@forelse ($cartItems as $item)
{{ $item->product->name }} x {{ $item->quantity }}
{{ format_price($item->product->price * $item->quantity) }}
@empty
No items in cart
@endforelse
@if ($cartItems->count() > 0)
Subtotal
{{ format_price($subtotal) }}
Tax ({{ tax_name() }} {{ tax_rate() }}%)
{{ format_price($tax) }}
Total
{{ format_price($total) }}
@endif
← Back to Cart