@extends('layouts.app') @section('title', 'Shipment Predictions') @section('breadcrumbs') @endsection @section('content')
AI-powered ETA predictions and accuracy tracking
| Shipment | Route | Predicted ETA | Actual ETA | Deviation | Accuracy |
|---|---|---|---|---|---|
| {{ $p->shipment_number ?? 'N/A' }} | {{ $p->origin ?? '' }} → {{ $p->destination ?? '' }} | {{ optional($p->predicted_eta)->format('d M Y') ?? 'N/A' }} | {{ optional($p->actual_eta)->format('d M Y') ?? 'Pending' }} | {{ ($p->deviation_days ?? 0) > 0 ? '+' : '' }}{{ $p->deviation_days ?? 0 }} days | {{ number_format($p->accuracy ?? 0, 1) }}% |
| No predictions yet | |||||