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

Driver Verification

Review and approve driver applications

@foreach($drivers as $driver)
{{ $driver->user->name ?? 'Unknown User' }}
{{ $driver->user->email ?? '' }}
{{ $driver->status }}
Vehicle Assets
Model {{ $driver->vehicle_model }}
Color {{ $driver->vehicle_color }}
Plate Number {{ $driver->plate_number }}
@if(!$driver->is_verified)
@csrf
@else
VERIFIED ON {{ $driver->updated_at->format('M d, Y') }}
@endif
@endforeach
@if($drivers->isEmpty())
🚜
No Driver Applications Found

All clear for now! New applications will appear here.

@endif
{{ $drivers->links() }}
@endsection