@extends('freight-client.layouts.app') @section('title', 'Dashboard') @section('content')

Welcome, {{ $client->contact_name }} 👋

{{ $client->company_name ?: 'Freight Client' }}

Total Loads
{{ $counts['total'] }}
Posted
{{ $counts['posted'] }}
In Transit
{{ $counts['in_transit'] }}
Delivered
{{ $counts['delivered'] }}
Drivers Available Now
{{ $availableDrivers }}
Post a New Load Find Available Drivers

Recent Loads

@if($loads->count()) @foreach($loads as $load) @endforeach
RefTitlePickup → Drop-offPickup DateStatus
{{ $load->reference_no }} {{ $load->title }} {{ $load->pickup_location }} {{ $load->dropoff_location }} {{ $load->pickup_date ? $load->pickup_date->format('d M Y') : '—' }} {{ $load->status_label }}
View all loads →
@else

No loads yet. Post your first load →

@endif
@endsection