Quick Tracking Order
@extends('user.usermaster2')
@section('title', 'Orders')
@section('stylesheet')
@endsection
{{-- @section('breadcrumb')
Orders
@endsection --}}
@section('body')
Quick Tracking Order
{{ $order['order_no'] }} |
{{ date('d M Y H:i A',$order->created_at->timestamp) }} |
{{ $order->status }} |
Customer Information: |
||
|---|---|---|
{{ $order->name }} |
{{ $order->last_name }} |
{{ $order->email }} |
{{ $order->phone }} |
{{ $order->country }} |
{{ $order->state }} |
{{ $order->street }} |
{{ $order->postal_code }} |
|
Delivery Details: |
||
{{ $order->tracking_number }} |
{{ $order->delivery_through }} |
|
Order Products : |
||
| Product | Pack Size | Quantity | Price |
|---|---|---|---|
|
{{ $product->unit }} | {{ $product->pivot->quantity }} | {{ $product->pivot->total_amount }} |
| Total: | ${{ $order->total_price }} USD |
 }})