@extends('layouts.admin') @section('page_kicker', 'Directory') @section('page_title', 'Independent clinicians') @section('content')

Licensed independent doctors on Aim4Wellness. Secure messaging unlocks after you have an appointment or consultation with a clinician.

@forelse($doctors as $doc)

{{ $doc->user->name ?? 'Clinician' }}

{{ $doc->specialization }}

@if($doc->experience_years)

{{ $doc->experience_years }}+ years experience

@endif @if($doc->bio)

{{ \Illuminate\Support\Str::limit($doc->bio, 220) }}

@endif

From {{ number_format((float) $doc->consultation_fee, 0) }} TZS / session

@if($doc->user) Request visit @endif
@empty
No clinicians listed yet.
@endforelse
@endsection