@extends('layouts.admin') @section('page_kicker', 'Telehealth') @section('page_title', 'Clinician dashboard') @section('content') @php $maxSessions = max(1, (int) ($sessionTrend->max('total') ?? 1)); @endphp

Patients

{{ $stats['patients'] }}

Consultations

{{ $stats['consultations'] }}

Upcoming

{{ $stats['upcoming'] }}

Earnings

{{ number_format($stats['earnings'], 2) }}

Sessions (last 7 days)

Consultations created per day

@forelse($sessionTrend as $row)
{{ \Illuminate\Support\Str::afterLast($row->day, '-') }}
@empty

No session data yet.

@endforelse

Recent activity

@endsection