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

Fleet Management

Approve KYC, activate IDs, and manage your technicians.

KYC Pending Approvals

@forelse($pendingTechs as $tech) @empty @endforelse
Name & Phone Status Owner Action

{{ $tech->name }}

{{ $tech->phone }}

Pending Review Approve & Activate
No pending approvals right now.

Your Fleet

@forelse($activeTechs as $tech) @empty @endforelse
Technician Details Current Status Manage
{{ substr($tech->name, 0, 1) }}

{{ $tech->name }}

ID: IFX-{{ $tech->id }} | {{ $tech->phone }}

@if($tech->status === 'active') Active / Idle @else Blocked @endif {{ $tech->status === 'active' ? 'Block ID' : 'Unblock ID' }}
No active technicians in the system.
@endsection