| Enfermedad actual |
| Datos del informante: {{ strtoupper($history->patient->name) }} |
| MOTIVO DE CONSULTA |
| {{ strtoupper(optional($diseases)->consultation_reason ?? '') }} |
| Tiempo de la enfermedad: {{ strtoupper(optional($diseases)->disease_type ?? '') }} |
| Signos y síntomas principales: {{ strtoupper(optional($diseases)->signs_symptoms ?? '') }} |
| Antecedentes personales |
| {{ optional($diseases)->personal_background ?? '' }} |
| Evolución |
@forelse($evolution ?? collect() as $row)
{{ \Carbon\Carbon::parse($row->date)->format('d-m-Y') }}
@if(optional($row->medico)->name)
— {{ $row->medico->name }}
@endif
{{ $row->observation ?? '' }}
|
@empty
| Sin registros de evolución. |
@endforelse
|
| Plan de tratamiento |
@foreach($forecast as $row)
| - {{$row->description}} |
@endforeach
|
| Tratamiento |
@foreach($treatment as $row)
| - {{$row->description}} |
@endforeach
|
|
|