@include('layouts.header')

Order Detail

@if(isset($order))

Order #{{ $order->order_id ?? '' }}

{{ $order->created_at->format('M j') ?? ''}}

Expected: {{ $order->expected_date ? \Carbon\Carbon::parse($order->expected_date)->format('M j') : '' }}

Status: {{ $order->order_status ?? ''}}

Show Details

Order details

Product Name

{{ $order->product->name ?? '' }}

Address

{{ $order->billing->address ?? '' }}

State

{{ $order->billing->state ?? '' }}

City

{{ $order->billing->city ?? '' }}

Postcode

{{ $order->billing->post_code ?? '' }}

Phone

{{ $order->billing->phone ?? '' }}

Email

{{ $order->billing->email ?? '' }}

@if($order->order_status == 'Pending') @endif
{{ $order->product->name ?? '' }}

Size: {{ $order->product->size ?? '' }}

Mrp

Rs. {{ $order->mrp ?? ''}}

Qty

{{ $order->qty ?? '' }}

Total Mrp

Rs. {{ $order->mrp*$order->qty ?? '' }}

Coupon Discount

Rs. {{ $order->coupon_discount ?? ''}}

@else

Order Detail Not Found!

@endif
@include('layouts.footer')