@extends('layouts.app') @section('title', 'Drivers') @section('content')

Drivers

@forelse($drivers as $driver) @empty @endforelse
NamePhoneLicense No.ExpiryVehicles
{{ $driver->name }} {{ $driver->phone }} {{ $driver->license_number ?? '—' }} {{ optional($driver->license_expiry)->format('d M, Y') ?? '—' }} {{ $driver->buses_count }}
No drivers yet.
@endsection