@extends('front.layouts.app') @section('content')

Shipping Address

Order Summery

@foreach (Cart::content() as $item)
{{ $item->name }} X {{ $item->qty }}
{{ $item->price * $item->qty }}
@endforeach
Subtotal
{{ Cart::subtotal() }}
Discount
{{ $discount }}
Shipping
{{ number_format($totalShippingCharge,2) }}
Total
{{ number_format($grandTotal,2) }}
@if (Session::has('code'))
{{ Session()->get('code')->code }}
@endif

Payment Method

{{-- Pay Now --}}
@endsection @section('customJs') @endsection