@section('head_level_content') @endsection

INVOICE #{{ $order->tracking_number }} ( pdf)

  • Package Status @if ($order->latestShipment->status === APPROVED) Approved @elseif($order->latestShipment->status === AVAILABLE) Available @elseif($order->latestShipment->status === CANCELLED) Cancelled @elseif($order->latestShipment->status === DISTRIBUTION) Distribution @elseif($order->latestShipment->status === INTRANSIT) In Transit @elseif($order->latestShipment->status === INWAREHOUSE) In Warehouse @elseif($order->latestShipment->status === INVOICED) Invoiced @elseif($order->latestShipment->status === ONROUTE) On Route @elseif($order->latestShipment->status === ONHOLD) On Hold @elseif($order->latestShipment->status === PENDINGCOLLECTION) Pending Collection @elseif($order->latestShipment->status === PENDINGPAYMENT) Pending Payment @elseif($order->latestShipment->status === RECEIVEDOFFICE) Received Office @endif
  • Status Updated On: {{ $order->latestShipment->status_at->format('d M, Y h:i A') }}
Item

{{ $order->item }}

Origin

{{ $order->origin }}

Destination

{{ $order->destination }}

Shipping Type

{{ $order->shipment_type }}

Payment Mode

{{ $order->payment_mode }}

Quantity

{{ $order->quantity }}

Date Received

{{-- $order->received_at ? $order->received_at->format('M d, Y') : 'Not Set' --}} Not Set

Departed Date

{{ $order->departed_at ? $order->departed_at->format('M d, Y') : 'Not Set' }}

Estimated Delivery Date

{{ $order->expected_at ? $order->expected_at->format('M d, Y') : 'Not Set' }}

Tracking History
@forelse ($order->shipment as $shipment) @empty @endforelse
Update Date Update Time New Location Package Status Remark
{{ $shipment->status_at->format('Y-m-d') }} {{ $shipment->status_at->format('h:i A') }} {{ $shipment->location }}/{{ $shipment->address }} @if ($shipment->status === APPROVED) Approved @elseif($shipment->status === AVAILABLE) Available @elseif($shipment->status === CANCELLED) Cancelled @elseif($shipment->status === DISTRIBUTION) Distribution @elseif($shipment->status === INTRANSIT) In Transit @elseif($shipment->status === INWAREHOUSE) In Warehouse @elseif($shipment->status === INVOICED) Invoiced @elseif($shipment->status === ONROUTE) On Route @elseif($shipment->status === ONHOLD) On Hold @elseif($shipment->status === PENDINGCOLLECTION) Pending Collection @elseif($shipment->status === PENDINGPAYMENT) Pending Payment @elseif($shipment->status === RECEIVEDOFFICE) Received Office @endif {{ $shipment->status_message }}
No tracking records found
Other Shipment Information
Weight

{{ $order->weight }}Kg

Height

{{ $order->height ?? '-' }}cm

Width

{{ $order->width ?? '-' }}cm

Insurance Amount

{{ $order->insurance_amount ? '$'.$order->insurance_amount : ' - ' }}

Clearance Amount

{{ $order->clearance_amount ? '$'.$order->clearance_amount : ' - ' }}

Shipping Amount

{{ $order->shipping_amount ? '$'.$order->shipping_amount : ' - ' }}

Sender

{{ $order->sender_name }}

Sender Email

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

Receiver

{{ $order->receiver_name }}

Receiver Address

{{ $order->receiver_address }}

Receiver Email

{{ $order->receiver_email }}

Receiver Phone

{{ $order->receiver_phone }}

Total Freight

{{ $order->total_freight ? '$'.$order->total_freight : ' - ' }}

Description

{{ $order->description }}

Image

{{ $order->item }}

@section('foot_level_contents') @endsection