Shopping cart

@php $total_amount = 0; $total_discounted_amount = 0; @endphp @foreach ($carts as $cart) @php $total_amount += $cart->product->price * $cart->quantity; $total_discounted_amount += $cart->product->discounted_price * $cart->quantity; @endphp @endforeach
Product Price Quantity Total
{{ $cart->product->name }}-Image
{{ $cart->product->name }}
  • Model: {{ $cart->product->category->name }}
  • Price: ₹{{ $cart->product->discounted_price }}
₹{{ $cart->product->discounted_price }}
₹{{ $cart->product->discounted_price * $cart->quantity }}