Your Cart
Product
Quantity
Price
Total
Actions
@foreach($cart as $item)
{{ $item->product->name }}
{{ $item->quantity }}
{{ number_format($item->product->sale_price, 2) }}
{{ number_format($item->product->sale_price * $item->quantity, 2) }}
@csrf @method('DELETE')
Remove
@endforeach
Checkout