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

Doctor Performance Report

Excel / CSVPDF
Reset
@forelse($doctors as $doctor) @php($total = (int) $doctor->appointments_count) @php($completed = (int) $doctor->completed_appointments) @empty @endforelse
DoctorSpecialtyTotalCompletedCancelledCompletionRevenue
{{ $doctor->user?->name }}{{ $doctor->specialty?->name }}{{ $total }}{{ $completed }}{{ $doctor->cancelled_appointments }}{{ $total ? number_format(($completed/$total)*100,2) : '0.00' }}%₹ {{ number_format((float)($doctorRevenue[$doctor->id] ?? 0),2) }}
No doctor data found.
@endsection