@extends('layouts.app', ['title' => 'Track Shipment']) @section('content')

{{ $shipment->awb }}

{{ $shipment->receiver_name }} — {{ $shipment->receiver_phone }}

{{ $shipment->status }}

@include('partials.money_breakdown', ['financial' => $shipment->financial])

Status Timeline

@foreach($shipment->statusHistories as $row)@endforeach
{{ $row->status }}{{ $row->notes }}{{ optional($row->created_at)->format('Y-m-d H:i') }}
@endsection