@extends('layouts.app') @section('title', 'Tracking Detail '.$shipment->resi_number) @push('styles') @endpush @section('content')
{{ __('common.resi_number') }} {{ $shipment->resi_number }}
Status: {{ ucfirst(str_replace('_', ' ', $shipment->status)) }}
{{ __('shipment_page.customer') }}: {{ $shipment->customer->full_name }}
{{ __('shipment_page.total_weight_kg') }}: {{ number_format($shipment->weight_kg, 2) }} KG
Scan for public tracking
{{ __('common.date_received') }} {{ $shipment->getFormattedDateReceived() }}
{{ __('common.date_loaded') }} {{ $shipment->getFormattedDateLoaded() }}
{{ __('common.date_departure') }} {{ $shipment->getFormattedDateDeparture() }}
{{ __('common.estimated_arrival') }} {{ $shipment->getFormattedEstimatedArrival() }}
| # | {{ __('shipment_page.description') }} | Dimensions (cm) | Volume (CBM) | Weight (KG) | {{ __('shipment_page.quantity') }} |
|---|---|---|---|---|---|
| {{ $index + 1 }} | {{ $item->description }} | {{ $item->length_m }} × {{ $item->width_m }} × {{ $item->height_m }} | {{ number_format($item->volume_cbm, 4) }} | {{ number_format($item->weight_kg, 2) }} | {{ $item->quantity }} |