@if(session('success'))
{{ session('success') }}
@endif
| Ref | Client | Title | Equipment | Pickup | Drop-off | Pickup Date | Rate | Status |
|---|---|---|---|---|---|---|---|---|
| {{ $load->reference_no }} | {{ optional($load->client)->company_name ?: optional($load->client)->contact_name ?: '—' }} | {{ $load->title }} | {{ $load->equipment_type ?: '—' }} | {{ $load->pickup_location }} | {{ $load->dropoff_location }} | {{ $load->pickup_date ? $load->pickup_date->format('d M Y') : '—' }} | {{ $load->rate_offer ? '$' . number_format($load->rate_offer, 2) : '—' }} | @php $map = ['posted'=>'info','assigned'=>'primary','in_transit'=>'warning','delivered'=>'success','cancelled'=>'danger']; @endphp {{ $load->status_label }} |
| No loads found. | ||||||||