@extends('user.user_dashboard') @section('home') Purchase Print Book - Checkout Dashboard Checkout Shipping Fee Applies for Delivery of Print Books See list of Countries we presently ship print copies to below @csrf Billing Details Full Name Email Address Phone Number Company Name (Optional) Country Select Country Albania Andorra Belarus Belgium Benin Bosnia and Herzegovina Botswana Bulgaria Canada Croatia Cyprus Czech Republic Denmark Estonia Eswatini Finland France Gambia Germany Ghana Greece Guinea Guinea-Bissau Hungary Iceland India Ireland Italy Latvia Lesotho Liberia Liechtenstein Lithuania Luxembourg Madagascar Malawi Mali Malta Mauritania Moldova Monaco Montenegro Mozambique Namibia Netherlands New Zealand Niger Nigeria North Macedonia Norway Pakistan Poland Qatar Romania Russia San Marino Senegal Serbia Slovakia Slovenia South Africa Spain Sweden Switzerland Togo Ukraine United Kingdom United States Vatican City Zambia Zimbabwe State Town/City Suburb (Optional) Street Address Postal Code Order Notes (Optional) Product Details Item Quantity Amount in Espees Amount in USD @foreach ($carts as $item) {{ $item->name }} {{ $item->qty }} {{ number_format($item->price * $item->qty, 2) }} Espees {{ number_format($item->options->price_usd * $item->qty, 2) }} USD @endforeach Select Payment Method Pay With Espees Payment Gateway for Espees Payment Credit / Debit Card - USD Payment Gateway for USD Payment {{-- Credit / Debit Card - NGN Flutterwave Payment Gateway for Naira Payment --}} @php $shipping_fee_espees = round($cartTotal * 0.25, 2); $usdTotal = 0; foreach(Cart::content() as $item) { $usdTotal += $item->options->price_usd * $item->qty; } $shipping_fee_usd = round($usdTotal * 0.25, 2); @endphp Payment Summary Original price: {{ number_format($cartTotal, 2) }} Espees Shipping Fee: {{ number_format($shipping_fee_espees, 2) }} Espees Total: {{ number_format($cartTotal + $shipping_fee_espees, 2) }} Espees @endsection