Vaccination reports

Arrivals, open observation notes, vaccines, AEFI, length of stay, and vaccination revenue.

← Specialty home

Arrivals today

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

Completed today

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

Observation open

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

Avg LOS (range)

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

Vaccines administered

    @forelse ($report['vaccine_breakdown'] as $row)
  • {{ $row['vaccine'] }} {{ $row['total'] }}
  • @empty
  • No administrations in range.
  • @endforelse

AEFI

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

Vaccination service revenue

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