@extends('layouts.app') @section('content')
View and manage your assigned loads
| Load ID | Status | Truck | Pickup Location | Delivery Location | Earnings | Date |
|---|---|---|---|---|---|---|
| #{{ $load->id }} | {{ ucfirst(str_replace('_', ' ', $load->status)) }} | {{ $load->truck?->truck_number ?? 'N/A' }} | {{ $load->pickup_location ?? 'N/A' }} | {{ $load->delivery_location ?? 'N/A' }} | ${{ number_format($load->driver_salary ?? 0, 2) }} | {{ $load->created_at->format('M d, Y') }} |
| No loads found. | ||||||