Order Tracking

Track shipments by entering an order number

Bulk Shipping

Upload CSV file to process multiple shipments

@if($this->showGoPartsShip)
@if($this->isWarehouseExclusive)

Warehouse {{ $bulkWarehouse }} ships exclusively through Go-Parts Ship.

@elseif($bulkShippingProvider === 'gopartsship')

All orders will be sent to Go-Parts Ship instead of Shipstation.

@endif
@endif
@if($showTrackingResults && count($trackingResults) > 0)

Tracking Results for Order #{{ $trackingOrderNumber }}

@foreach($trackingResults as $result)

Shipment #{{ $result->external_shipment_id ?? $result->shipment_id }}

{{ $result->carrier }} - {{ $result->shipment_method }}

@if($result->tracking_number) {{ $result->tracking_number }} @endif
@endforeach
@endif

Latest Shipments

{{ $this->shipments->total() }} Total
@foreach($this->shipments as $shipment) @php $orderItems = $shipment->orderItems; $firstItem = $orderItems->first(); $order = $firstItem ? $firstItem->order : null; @endphp @foreach($orderItems as $item) @endforeach @if(!empty($shipment->notes)) @endif @endforeach
Order / Shipment Carrier Tracking # Actions
@if($order)
{{ $order->external_order_id }}
#{{ $shipment->external_shipment_id ?? $shipment->shipment_id }}
@else N/A @endif
{{ $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 }}
@if($this->shipments->hasPages())
Showing {{ $this->shipments->firstItem() }} to {{ $this->shipments->lastItem() }} of {{ $this->shipments->total() }} results
{{ $this->shipments->links() }}
@endif