@extends('website.layout.master') @section('title') @endsection @section('content') Cart Home Cart Product Name Price Quantity Subtotal @php $subtotal = 0; @endphp @foreach($addedproducts as $pro) @php $subtotal += $pro->quantity * $pro->price; @endphp {{ $pro->name }} {{ $pro->price }} PKR {{ $pro->quantity * $pro->price }} PKR @endforeach Cart Totals Subtotal:{{ $subtotal }} PKR Order Total:{{ $subtotal }} PKR Proceed to Checkout @endsection