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

Checkout

@csrf

Billing Details

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

@endsection