Physiotherapy reports

Arrivals, high pain, diagnoses, session outcomes, length of stay, and physio service revenue.

← Specialty home

Arrivals today

{{ number_format($report['arrivals_today']) }}

Completed today

{{ number_format($report['completed_today']) }}

High pain open

{{ number_format($report['high_pain_open']) }}

Avg LOS (range)

{{ $report['avg_los_minutes'] !== null ? $report['avg_los_minutes'].' min' : '—' }}

Diagnoses

    @forelse ($report['diagnosis_breakdown'] as $row)
  • {{ $row['diagnosis'] }} {{ $row['total'] }}
  • @empty
  • No diagnosis records in range.
  • @endforelse

Session outcomes

    @forelse ($report['session_outcomes'] as $row)
  • {{ $row['outcome'] }} {{ $row['total'] }}
  • @empty
  • No sessions in range.
  • @endforelse

Physiotherapy service revenue

    @forelse ($report['revenue_by_service'] as $row)
  • {{ $row->description }} ×{{ $row->total }} {{ $currency }} {{ number_format($row->amount_minor / 100, 2) }}
  • @empty
  • No billed physiotherapy services in range.
  • @endforelse