@extends('layouts.app') @section('content') @include('health.actions')
Buscar estudios
Resultados de búsqueda (Total: {{ $results->total() }})
@if($results->isEmpty()) @else @foreach($results as $study) @endforeach @endif
Fecha ID Paciente Estudio Tipo Reporte Acciones
No se han encontrado resultados
{{ $study->study_datetime }} {{ $study->pat_id }} {{ $study->pat_name }} {{ $study->study_desc }} {{ $study->mods_in_study }} @if(!empty($study->report)) Realizado @else Pendiente @endif @hasanyrole('Administrativo|Root') @if(isset($study->user_id)) @else @endif @endhasanyrole @hasanyrole('Administrativo|Médico|Root') @if(!empty($study->user_phone)) @endif @endhasanyrole @hasanyrole('Administrativo|Médico|Root') @endhasanyrole
@endsection