@extends('layouts.app') @section('title', 'Driver Assignments') @section('breadcrumbs') @endsection @section('content')

Driver Assignments

Manage driver assignments for shipments

New Assignment
@forelse($driverAssignments ?? [] as $assignment) @empty @endforelse
Assignment # Driver Vehicle Shipment Start Date Status Actions
{{ $assignment->assignment_number }} {{ $assignment->driver->name ?? 'N/A' }} {{ $assignment->vehicle->registration_number ?? 'N/A' }} {{ $assignment->shipment->shipment_number ?? 'N/A' }} {{ $assignment->start_date->format('d M Y') }} {{ ucfirst($assignment->status) }}

No driver assignments found

@endsection