Track shipments by entering an order number
Upload CSV file to process multiple shipments
Shipment #{{ $result->external_shipment_id ?? $result->shipment_id }}
{{ $result->carrier }} - {{ $result->shipment_method }}
| Order / Shipment | Carrier | Tracking # | Actions | ||||||
|---|---|---|---|---|---|---|---|---|---|
|
@if($order)
{{ $order->external_order_id }}
@else
N/A
@endif
#{{ $shipment->external_shipment_id ?? $shipment->shipment_id }}
|
{{ $shipment->carrier ?: '-' }} |
@if($shipment->tracking_number)
{{ $shipment->tracking_number }}
@else
N/A
@endif
|
@if(!$shipment->date_shipped) @endif | ||||||
|
↳
@php
$productName = $item->product ? $item->product->name : $item->name;
$isLongName = strlen($productName) > 100;
@endphp
@if($isLongName)
{{ substr($productName, 0, 100) }}...
{{ $productName }}
@else
{{ $productName }}
@endif
Qty: {{ $item->qty }}
|
|||||||||
| Notes: {{ $shipment->notes }} | |||||||||