Back

{{ $patient->fullName() }}

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

Assessment

@if ($assessment)
Indication
{{ $assessment->payload['indication'] ?? '—' }}
Fit
{{ ! empty($assessment->payload['fit_for_infusion']) ? 'Yes' : 'No' }}
@else

No assessment recorded.

@endif

Protocol

@if ($protocol)
Medication
{{ $protocol->payload['medication'] ?? '—' }}
Dose
{{ $protocol->payload['dose'] ?? '—' }}
Rate
{{ $protocol->payload['rate'] ?? '—' }}
@else

No protocol recorded.

@endif

Session

@if ($session)
Medication
{{ $session->payload['medication'] ?? '—' }}
Start
{{ $session->payload['start_time'] ?? '—' }}
End
{{ $session->payload['end_time'] ?? '—' }}
@else

No session recorded.

@endif

Monitoring

@if ($monitoring)
Reaction
{{ $monitoring->payload['reaction'] ?? '—' }}
Outcome
{{ $monitoring->payload['outcome'] ?? '—' }}
@else

No monitoring recorded.

@endif