@extends('layouts.admin') @section('admin-content')

Freight Loads

@if(session('success'))
{{ session('success') }}
@endif
@if(request('status')) Clear @endif
@forelse($loads as $load) @empty @endforelse
RefClientTitleEquipment PickupDrop-offPickup DateRateStatus
{{ $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.
@endsection