@extends('layouts.app-v2') @section('content-section')
  • Laboratorio:{{ $data->nom_laboratorio }}
  • Medio de cultivo: {{ $medio->lote->medios->first()->nom_medio }}
  • Lote Medio Cultivo: {{ $medio->lote->lote }}
  • Fecha Vencimiento Lote Medio: {{ is_null($medio->lote) ? 'Sin Fecha de vencimiento' : $medio->lote->fecha_vencimiento }}
  • @if (!is_null($medio->lote->LoteMedioCepas)) @foreach ($medio->lote->LoteMedioCepas()->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 ($medio->lote->LoteMedioCepas()->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 ($medio->lote->LoteMedioCepas()->where('lote_laboratorio_id', $data->id_laboratorio)->count() > 0) @foreach ($medio->lote->LoteMedioCepas()->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