@php $cart = session()->get('cart', []); @endphp

Your Cart

Clear Shoping Cart
@php $total=0; @endphp @if($cart) @foreach($cart as $key=>$item) @php $price =$item['price']*$item['quantity']; $total +=$price; @endphp @endforeach @endif
Product Price Quantity Subtotal
@csrf @method('DELETE')
Digital Product {{ $item['name']}} {{ $item['size'] ??''}} {{ $item['color']??''}} {{ priceFormate($item['price'])}}
- +
{{ priceFormate($price)}}
Order Summary
Subtotal {{ priceFormate($total)}}
Shipping
State Tax $0.00
Total {{ priceFormate($total)}}
Process to Checkout