Infusion reports

Arrivals, open sessions, medications, reactions, length of stay, and infusion revenue.

← Specialty home

Arrivals today

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

Completed today

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

Sessions open

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

Avg LOS (range)

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

Medications / regimens

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

Reactions

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

Infusion service revenue

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