@include('layouts.header') @include('layouts.tostMessage') {{-- main content --}}

>> Join The Circle <<

  1. 🛍️ SHIPPING ADDRESS

    @csrf @foreach ($cartItems as $item) @endforeach
Order Summary #{{ $orderNumber }}
@foreach ($cartItems as $item)
{{ $item->product->name }}

Price: ${{ $item->product->price }} | Quantity: {{ $item->quantity }}

@endforeach
Sub Total :
${{ $cartItems->sum(function ($item) { return $item->product->price * $item->quantity; }) }}
Platform Fee :
Free
Shipping Fee :
{{ $shippingCharge > 0 ? '$' . $shippingCharge : 'Free' }}
Total Amount:
${{ $cartItems->sum(function ($item) { return $item->product->price * $item->quantity; }) + $shippingCharge }}
@include('layouts.footer')