Datos del paciente
Nombre:
{{ $patient->fullName() }}
@if($patient->document_number)
Documento:
{{ strtoupper($patient->document_type ?? '') }} {{ $patient->document_number }}
@endif
@if($patient->birthdate)
Fecha nac.:
{{ $patient->birthdate->format('d/m/Y') }} ({{ $patient->age() }} años)
@endif
@if($patient->blood_type)
Grupo sang.:
{{ $patient->blood_type }}
@endif
Profesional prescriptor
Nombre:
{{ $prescription->employee?->user?->name ?? '—' }}
Fecha:
{{ $prescription->created_at->format('d/m/Y') }}
Estado:
{{ $prescription->isSigned() ? 'FIRMADA' : 'BORRADOR' }}
@if($prescription->diagnosis_summary)
DIAGNÓSTICO
{{ $prescription->diagnosis_summary }}
@endif
MEDICAMENTOS PRESCRITOS
@foreach($prescription->items as $i => $item)
{{ $i + 1 }}
{{ $item->medication }}
@if($item->dose)Dosis: {{ $item->dose }}@endif
@if($item->frequency)Frecuencia: {{ $item->frequency }}@endif
@if($item->duration)Duración: {{ $item->duration }}@endif
@if($item->route)Vía: {{ $item->route }}@endif
@if($item->instructions)
📌 {{ $item->instructions }}
@endif
@endforeach
@if($prescription->notes)
NOTAS ADICIONALES
{{ $prescription->notes }}
@endif
{{ $prescription->employee?->user?->name ?? 'Profesional' }}
Firma y sello