@extends('admin.adminmaster') @section('title') Admin-Order @endsection @section('content') @section('heading') Order @endsection @if (session('order_change_status'))
{{ $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 : |
|||
| Product | Pack Size | Quantity | Price |
|---|---|---|---|
|
{{ $product->pivot->unit }} | {{ $product->pivot->quantity }} | {{ $product->pivot->total_amount }} |
| Total: | ${{ $order->total_price }} USD |
 }})
Signature: -------------------