@extends('admin.adminmaster') @section('title') Admin-Order @endsection @section('content') @section('heading') Order @endsection @if (session('order_change_status')) @endif
Change Order Status
@csrf
Order Status:

@if (isset($order))
ORDER INVOICE
{{ $order['order_no'] }}
{{ date('d M Y H:i A',$order->created_at->timestamp) }}
{{ ucfirst( $order->status) }}
{{ ucfirst($order->payment_status ) }}

Customer Information:
{{ $order->name }}
{{ $order->last_name }}
{{ $order->email }}
{{ $order->phone }}
{{ $order->state }}
United States
{{ $order->street }}
{{ $order->postal_code }}

Delivery Details:
{{ $order->tracking_number }}
{{ $order->delivery_through }}

Order Products :
@foreach ($order->getProducts as $product) @endforeach
Product Pack Size Quantity Price
{{ $product->name }} - {{ $product->pivot->size }} {{ $product->pivot->color }}
{{ $product->pivot->unit }} {{ $product->pivot->quantity }} {{ $product->pivot->total_amount }}
Total: ${{ $order->total_price }} USD



PAIN FREE-USA

Signature: -------------------

@else
No Result
@endif
@endsection @section('script') @endsection