@extends('website.layout.master') @section('title') @endsection @section('content') Checkout Home Checkout @csrf Billing Details First Name* Last Name* Company Name* Email Address* Phone Number* Country* Address* Town/City* State* Zip Code* Order Notes Your Order Product Total @php $subtotal = 0; @endphp @foreach($addedproducts as $pro) @php $subtotal += $pro->quantity * $pro->price; @endphp {{ $pro->name.' ( '.$pro->quantity.'x )' }} {{ $pro->price*$pro->quantity }} PKR @endforeach Sub Total {{ $subtotal }} PKR Order Total {{ $subtotal }} PKR Payment Proccess Cash on Delivery Place order @endsection
Product