![]() |
EVENTOS MÉDICOS |
|---|
| DATOS GENERALES | |||
|---|---|---|---|
| Nombre Beneficiaria:
{{ $datos["beneficiario"]['nombre'] ?? '' }} |
@php
$fechaNaci = new DateTime($datos["beneficiario"]['fecha_nacimiento']);
$fechaFormateadaNaci = $fechaNaci->format('d-m-Y');
@endphp
Fecha nacimiento:
{{ $fechaFormateadaNaci ?? '' }} |
@php
$fechaIngre = new DateTime($datos['etapas'][0]['fecha_ingreso_E']);
$fechaFormateadaIngre = $fechaIngre->format('d-m-Y');
@endphp
Fecha de ingreso:
{{ $fechaFormateadaIngre/*$datos["beneficiario"]['fecha_alta']*/ ?? '' }} |
Fecha de egreso:
{{ $datos["proceso"]['fecha_cierre_proceso'] ?? '' }} |
| REPORTE DE EVENTOS MÉDICOS |
|---|
| GTTI-EM-{{$evento["id_evento_medico_pk"] ?? ''}} | @php $breakDate = Str::of($evento["fecha_evento_incluida"])->limit(10,''); $fechaEventoInicio = new DateTime($breakDate); $fechaFormateadaInicio = $fechaEventoInicio->format('d-m-Y'); @endphp INICIO: {{$fechaFormateadaInicio ?? ''}} | @php $breakDateF = Str::of($evento["fecha_evento_cierre"])->limit(10,''); $fechaEventoCierre = new DateTime($breakDateF); $fechaFormateadaCierre = $fechaEventoCierre->format('d-m-Y'); @endphp CIERRE: {{$fechaFormateadaCierre ?? ''}} | @if ($evento["id_estado_boton_fk"] == 1)En proceso @elseif ($evento["id_estado_boton_fk"] == 2) | Concluido @elseif ($evento["id_estado_boton_fk"] == 3) | Listo para tratamiento @else ??? @endif | |||
| ANTROPOMETRÍA: | Peso: {{$evento["peso"] ?? ''}} Kg | Talla: {{$evento["talla"] ?? ''}} m | IMC: {{$imc}} | |||||
| SIGNOS VITALES: | Presión Arterial: {{$evento["presion_art_dos"] ?? ''}} | O2Sat: {{$evento["sat"] ?? ''}}% | Freq Cardiaca: {{$evento["cardiaca"] ?? ''}} LPM | |||||
| Freq Respiratoria: {{$evento["frecuencia"] ?? ''}} RPM | Temperatura: {{$evento["temp"] ?? ''}} °C | |||||||
| DIAGNÓSTICO: {{$evento["diagnostico"] ?? ''}} |
||||||||
| MOTIVOS DE ATENCIÓN: {{$evento["motivos"] ?? ''}} |
||||||||
| RESUMEN DE INTERROGATORIO POR APARATOS Y SISTEMAS Y EXPLORACIÓN FÍSICA: {{$evento["resumen"] ?? ''}} |
||||||||
| TRATAMIENTO {{$tratamiento["id_trata"] ?? ''}} | TIPO: {{$tratamiento["tratamientoNombre"]["tratamiento"] ?? ''}} @if ($tratamiento["tratamientoNombre"]["id_tratamiento_pk"] == 9) ({{$tratamiento["otro"] ?? ''}}) @endif | |||
| MEDICAMENTOS DEL TRATAMIENTO | ||||||
|---|---|---|---|---|---|---|
| Nombre | Nom. Genérico | Presentación | Concentración | Dosis | Frecuencia | Duración |
| {{$medicamento["nombre_medicamento"] ?? ''}} | {{$medicamento["string_anexo_dos_fk"] ?? ''}} | {{$medicamento["string_anexo_tres_fk"] ?? ''}} | {{$medicamento["string_anexo_uno_fk"] ?? ''}} | {{$medicamento["dosis"] ?? ''}} | {{$medicamento["frecuencia"] ?? ''}} | {{$medicamento["duracion"] ?? ''}} |
| INDICACIONES GENERALES: {{$tratamiento["indicacionesGenerales"]["indicacion_general"] ?? ''}} |
|
|---|---|
| ESPECIALISTA: @if (isset($tratamiento["indicacionesGenerales"]["require_especialista"])) @if ($tratamiento["indicacionesGenerales"]["require_especialista"] == 1) Se requiere @else No se requiere @endif @endif | {{$tratamiento["indicacionesGenerales"]["especialista_esp"] ?? ''}} |
| TERAPIA: @if (isset($tratamiento["indicacionesGenerales"]["require_terapia"])) @if ($tratamiento["indicacionesGenerales"]["require_terapia"] == 1) Se requiere @else No se requiere @endif @endif | {{$tratamiento["indicacionesGenerales"]["terapia_esp"] ?? ''}} |
| @php $fechaIndGenInicio = new DateTime($tratamiento["indicacionesGenerales"]["fecha_inicio"]); $fechaFormateadaIndGenInicio = $fechaIndGenInicio->format('d-m-Y'); @endphp Fecha inicio: {{$fechaFormateadaIndGenInicio ?? ''}} | @php $fechaIndGenFin = new DateTime($tratamiento["indicacionesGenerales"]["fecha_fin"]); $fechaFormateadaIndGenFin = $fechaIndGenFin->format('d-m-Y'); @endphp Fecha fin: {{$fechaFormateadaIndGenFin ?? ''}} |
| EXAMEN DE GABINETE U OTRO: @if (isset($tratamiento["indicacionesGenerales"]["examen"])) @if ($tratamiento["indicacionesGenerales"]["examen"] == 1) Se requiere @else No se requiere @endif @endif | {{$tratamiento["indicacionesGenerales"]["examen_esp"] ?? ''}} |
| Nombre del examen: {{$examen["nombre"] ?? ''}} | Fecha: {{$examen["fecha"] ?? ''}} |
| RESULTADO DEL TRATAMIENTO: @if ($tratamiento["resultado_tratamiento"] == 1) Favorable @elseif($tratamiento["resultado_tratamiento"] == 2) No favorable @endif {{--$valorTrata $tratamiento["indicacionesGenerales"]["nombre_examen"]??'' --}} |
|
| Otros comentarios: {{$tratamiento["indicacionesGenerales"]["otros_comentarios_text"] ?? ''}} |
|