@extends('website.layout.master') @section('title') @endsection @section('content')

Cart

@php $subtotal = 0; @endphp @foreach($addedproducts as $pro) @php $subtotal += $pro->quantity * $pro->price; @endphp @endforeach
  Product Name     Price Quantity Subtotal
{{ $pro->name }}
{{ $pro->price }} PKR
{{ $pro->quantity * $pro->price }} PKR

Cart Totals

  • Subtotal:{{ $subtotal }} PKR
  • Order Total:{{ $subtotal }} PKR
Proceed to Checkout
@endsection