@extends('admin.layout.app') @section('content')

Order Details

Invoice Number : {{$order->order_number ?? ''}}
Order Date : {{ \Carbon\Carbon::parse($order->created_at)->format('d-M-Y h:i:s a') }}
Shipping Method : {{$order->shipping ?? ''}}
Payment Method : {{$order->payment_method ?? ''}}
@if($order->ship_to_diff_address_checked)

Shipping Address

Customer Name: {{$order->differentShipping->name ?? ''}}
Customer Name: {{$order->differentShipping->phone ?? ''}}
Address: {{$order->differentShipping->address ?? ''}}
State: {{$order->differentShipping->state ?? ''}}
City: {{$order->differentShipping->city ?? ''}}
Country: {{$order->differentShipping->country ?? ''}}
Postal Code: {{$order->differentShipping->postal_code ?? ''}}
@else

Shipping Address

Customer Name: {{$order->customer_name ?? ''}}
Customer Name: {{$order->customer_phone ?? ''}}
Address: {{$order->customer_address ?? ''}}
State: {{$order->customer_state ?? ''}}
City: {{$order->customer_city ?? ''}}
Country: {{$order->customer_country ?? ''}}
Postal Code: {{$order->customer_postal_code ?? ''}}
@endif

Billing Details

Customer Name: {{$order->customer_name ?? ''}}
Phone: {{$order->customer_phone ?? ''}}
Address: {{$order->customer_address ?? ''}}
City: {{$order->customer_city ?? ''}}
Country: {{$order->customer_country ?? ''}}
@foreach($order->orderItems as $item) @endforeach
Product Details Total
{{$item->product->name ?? ''}} {{--

--}} {{-- Size : X--}} {{--

--}}

Price :{{$item->price ?? ''}}{{$order->currency_icon ?? ''}}

Qty : {{$item->quantity ?? ''}}

{{--

--}} {{-- Warranty Type : Local seller warranty--}} {{--

--}} {{--

--}} {{-- Brand : Symphony--}} {{--

--}} {{--

--}} {{-- Ram : 1 GB--}} {{--

--}} {{--

--}} {{-- Color Family : Black--}} {{--

--}}
{{$item->subtotal}} {{$order->currency_icon ?? ''}}
{{$order->shipping ?? ''}} Shipping({{$order->currency_icon ?? ''}}) {{$order->shipping_cost ?? ''}}{{$order->currency_icon ?? ''}}
Tax {{$order->tax ?? ''}}{{$order->currency_icon ?? ''}}
Total {{$order->pay_amount ?? ''}}{{$order->currency_icon ?? ''}}
@endsection