Back

{{ $patient->fullName() }}

{{ $patient->patient_number }} · Visit #{{ $visit->id }} · Stage {{ $visit->specialty_stage ?? '—' }}

Eligibility

@if ($eligibility)
Vaccine
{{ $eligibility->payload['vaccine'] ?? '—' }}
Cleared
{{ ! empty($eligibility->payload['cleared']) ? 'Yes' : 'No' }}
@else

No eligibility recorded.

@endif

Consent

@if ($consent)
Consent
{{ ! empty($consent->payload['consent_obtained']) ? 'Obtained' : '—' }}
Type
{{ $consent->payload['consent_type'] ?? '—' }}
@else

No consent recorded.

@endif

Administration

@if ($admin)
Vaccine
{{ $admin->payload['vaccine'] ?? '—' }}
Lot
{{ $admin->payload['batch'] ?? '—' }}
Site
{{ $admin->payload['site'] ?? '—' }}
@else

No administration recorded.

@endif

Observation / AEFI

@if ($observation)
AEFI
{{ $observation->payload['aefi'] ?? '—' }}
Outcome
{{ $observation->payload['outcome'] ?? '—' }}
@else

No observation recorded.

@endif