@extends('layouts.admin') @section('page_kicker', 'Insights') @section('page_title', 'Mental health') @section('content') @php $maxAvg = max(0.01, (float) ($moods->max('avg') ?? 1)); @endphp

14-day average mood score by day for your telehealth patients (when mood logs exist).

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

No mood data in the last 14 days.

@endforelse

Therapy sessions follow the same consultation and chat flows. Patients can log mood from the telehealth portal.

@endsection