@extends('layouts.app-v2') @section('content-section')
  • Laboratorio:{{ $data->nom_laboratorio }}
  • Antibiótico: {{ $prueba->lote->pruebasSensibilidad->first()->nom_prueba }} -
  • Lote Antibiótico: {{ $prueba->lote->lote }}
  • Fecha Vencimiento Lote Prueba Sensibilidad: {{ $prueba->lote->fecha_vencimiento }}
  • @if (!is_null($prueba->lote->lotePruebaSensibilidadCepas)) @foreach ($prueba->lote->lotePruebaSensibilidadCepas()->where('lote_laboratorio_id', $data->id_laboratorio)->get() as $key => $cepas)
  • Cepa {{ $key + 1 }} {{ $cepas->loteCepas->cepas->first()->nom_cepa }} | Lote {{ $cepas->loteCepas->lote }} {{ $cepas->loteCepas->id }} | Fecha de vencimiento {{ $cepas->loteCepas->fecha_vencimiento }}
  • @endforeach @endif
Descargar pdf
@csrf @method('delete')
@if ($prueba->lote->lotePruebaSensibilidadCepas()->where('lote_laboratorio_id', $data->id_laboratorio)->count() < 2)
@csrf
@php $id = null; /** if ($medio->lote->LoteMedioCepas()->where('lote_laboratorio_id', $data->id_laboratorio)->first()) { $id = $medio->lote->LoteMedioCepas()->first()->lote_cepa_id; }**/ @endphp
@endif
@if ($prueba->lote->lotePruebaSensibilidadCepas()->where('lote_laboratorio_id', $data->id_laboratorio)->count() > 0) @foreach ($prueba->lote->lotePruebaSensibilidadCepas()->where('lote_laboratorio_id', $data->id_laboratorio)->get() as $ke1 => $cepas)
{{ $cepas->loteCepas->cepas->first()->nom_cepa }} - Id lote {{ $cepas->loteCepas->id }}
Comentario Medición Imagen Acciones
@csrf Usuario: {{ Auth::user()->iniciales ?? 'SW' }} | Fecha: {{ $hoy->isoFormat('M/D/YY HH:mm') }}
@foreach ($cepas->comentariosLoteCepa()->where('lote_laboratorio_id', $data->id_laboratorio)->get() as $cepa) @endforeach
@csrf @method('PUT') Usuario: {{ $cepa->usuario->iniciales }} | Fecha: {{ $cepa->created_at->isoFormat('M/D/YY HH:mm') }}
@if ($cepa->foto_url) Ver Imagen @endif
@csrf @method('DELETE')

@csrf @method('delete')
@endforeach @else

No tiene cepas relacionadas

@endif
@endsection