@extends('user.usermaster2') @section('title', ' Home') @section('style') @endsection @section('body')
@php $price=0; @endphp @foreach ($carts as $cart) @php $price = $price + $cart->total_amount; @endphp @endforeach
Product Price Quantity Subtotal
Image
{{ $cart->getProduct->name }}
${{ $cart->price }}
@csrf
+
-
${{ $cart->total_amount }}
@csrf
  • Total ${{ $price }}
Proceed to Checkout
@endsection