@extends('portal::layouts.customer') @section('title', $shipment->ref_no) @section('content')

@lang('portal::lang.shipment_tracking'): {{ $shipment->ref_no }}

@lang('portal::lang.status'): {{ $statuses[$shipment->status] ?? $shipment->status }}

@if($shipment->driver)

@lang('tms::lang.driver'): {{ $shipment->driver->name }}

@endif @if($shipment->vehicle)

@lang('tms::lang.vehicle'): {{ $shipment->vehicle->plate_number }}

@endif @if($shipment->project)

@lang('tms::lang.linked_project'): {{ $shipment->project->name }}

@endif
@endsection