@extends('layouts.app') @section('content')
| Doctor | Specialty | Total | Completed | Cancelled | Completion | Revenue |
|---|---|---|---|---|---|---|
| {{ $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. | ||||||