@extends('layouts.admin') @section('page_kicker', 'Clinical network') @section('page_title', 'Doctor management') @section('content')

Independent & hospital doctors

Verification and lifecycle actions per provider.

@foreach($doctors as $doctor) @endforeach
Doctor Type Specialization Performance Actions
{{ $doctor->user->name ?? 'N/A' }}

{{ $doctor->user->email ?? 'N/A' }}

{{ $doctor->user->doctor_type ?? 'unknown' }} {{ $doctor->specialization }} Appointments: {{ \App\Models\Modules\Aim4Wellness\Models\TelehealthAppointment::where('doctor_id', $doctor->user_id)->count() }}
Ratings: N/A
@if($doctor->user)
@csrf @method('PATCH')
@endif
{{ $doctors->links() }}
@endsection