Back
{{ $patient->fullName() }}
{{ $patient->patient_number }}
· Visit #{{ $visit->id }}
· Stage {{ $visit->specialty_stage ?? '—' }}
· {{ $visit->checked_in_at?->format('d M Y H:i') ?? '—' }}
Blood request
@if ($bloodRequest)
- Product
- {{ $bloodRequest->payload['product'] ?? '—' }}
- Units requested
- {{ $bloodRequest->payload['units'] ?? '—' }}
- Urgency
- {{ $bloodRequest->payload['urgency'] ?? '—' }}
- Blood group
- {{ $bloodRequest->payload['patient_blood_group'] ?? '—' }}
- Indication
- {{ $bloodRequest->payload['indication'] ?? '—' }}
- Cross-match
- {{ $bloodRequest->payload['crossmatch_status'] ?? '—' }}
- Issued units
- {{ $bloodRequest->payload['issued_units'] ?? '—' }}
- Notes
- {{ $bloodRequest->payload['notes'] ?? '—' }}
@else
No blood request recorded.
@endif
Issue
@if ($issueNote)
- Product
- {{ $issueNote->payload['product'] ?? '—' }}
- Units issued
- {{ $issueNote->payload['units_issued'] ?? '—' }}
- Bag numbers
- {{ $issueNote->payload['bag_numbers'] ?? '—' }}
- Issued to
- {{ $issueNote->payload['issued_to'] ?? '—' }}
- Issued at
- {{ $issueNote->payload['issued_at'] ?? '—' }}
- Notes
- {{ $issueNote->payload['notes'] ?? '—' }}
@else
No issue recorded.
@endif
Transfusion
@if ($transfusionNote)
- Started
- {{ $transfusionNote->payload['started_at'] ?? '—' }}
- Units transfused
- {{ $transfusionNote->payload['units_transfused'] ?? '—' }}
- Reaction
- {{ $transfusionNote->payload['reaction'] ?? '—' }}
- Outcome
- {{ $transfusionNote->payload['outcome'] ?? '—' }}
- Notes
- {{ $transfusionNote->payload['notes'] ?? '—' }}
@else
No transfusion record.
@endif
@if ($visit->bill)
Billing ({{ $visit->bill->invoice_number }})
@foreach ($visit->bill->lineItems as $line)
- {{ $line->description }}
- {{ number_format($line->total_minor / 100, 2) }}
@endforeach
@endif