@extends('layouts.app') @php $userID = auth()->user() ? auth()->user()->id : 1; @endphp @section('content')
Order > Detail >> Payment Method

{{ $address->firstname }} {{ $address->lastname }} ({{ $address->phone }})


Ship to
{{ $address->address }},{{ $address->city }},{{ $address->state }} ,{{ $address->country }},{{ $address->pincode }}

Your Promo Code DISCOUNT30 is applied!!!

Shipping method

Standard Shipping ( 1- {{$shipping->delivery_days ?? '7' }} business days)

{{ $shipping->price ?? '100' }}

Payment Method

Online


Cash On Delivery

Billing address

Same as shipping address


Use a different billing address

Contact information
Billing Address
@foreach($order->orderItems as $orderItem)

{{ $orderItem->name }}
QTY:{{ $orderItem->qty }}

{{ $orderItem->price }}

@endforeach

Subtotal

{{ $order->sub_total }}

Shipping

{{ $shipping->price ?? '100' }}

Delivery Days

{{ $shipping->delivery_days }}

Total

{{ $order->sub_total }}

* Easy Return * Quality Gurantee * Secured Checkout

Express checkout

@endsection