@if(is_numeric($fila_id))
@php $alturas = \DTE::getAlturasBodegas($fila_id); @endphp
@if(count($alturas) > 0)
@foreach($alturas as $a)
@php
$altura_id = $a->bodega_altura_id;
@endphp
@include('dashboard.bodegas.table-altura')
@endforeach
@endif
@endif
|