@extends('user.user_dashboard') @section('home')
Shipping Fee Applies for Delivery of Print Books
See list of Countries we presently ship print copies to below
@csrf

Billing Details

Product Details

@foreach ($carts as $item) @endforeach
Item Quantity Amount in Espees Amount in USD
{{ $item->name }} {{ $item->qty }} {{ number_format($item->price * $item->qty, 2) }} Espees {{ number_format($item->options->price_usd * $item->qty, 2) }} USD

Select Payment Method

Payment Gateway for Espees Payment
Payment Gateway for USD Payment
{{--
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