@extends('front.layouts.app') @section('content') Home Shop Checkout Shipping Address Select a Country @foreach ($countries as $country) country_id == $country->id) ? 'selected' : '' }} value="{{ $country->id }}">{{ $country->name }} @endforeach {{ (!empty($customerAddress)) ? $customerAddress->address : '' }} {{ (!empty($customerAddress)) ? $customerAddress->last_name : '' }} 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) }} Apply Coupon @if (Session::has('code')) {{ Session()->get('code')->code }} @endif Payment Method COD Stripe Card Number Expiry Date CVV Code {{-- Pay Now --}} Order Now @endsection @section('customJs') @endsection