@if ($filtros['#'])
| {{ $key + 1 }} |
@endif
@if ($filtros['filtro_nombre'])
{{ $item->servicio_tipo_nombre }} |
@endif
@if ($filtros['filtro_descripcion'])
@endif
@if ($filtros['filtro_producto'])
{{-- @if ($item->servicio_tipo_para_producto) --}}
@if ($item->servicio_tipo_para_producto == 1)
SI |
@elseif($item->servicio_tipo_para_producto === 0)
NO |
@endif
@if (is_null($item->servicio_tipo_para_producto))
(No definido) |
@endif
@endif
@if ($filtros['filtro_morosidad'])
@if ($item->servicio_tipo_es_para_morosidad == 1)
SI |
@elseif($item->servicio_tipo_es_para_morosidad == 0 && !is_null($item->servicio_tipo_es_para_morosidad))
NO |
@endif
@if (is_null($item->servicio_tipo_es_para_morosidad))
(No definido) |
@endif
@endif
@if ($filtros['filtro_estado'])
@if ($item->servicio_tipo_estado == 1)
Activo |
@else
Inactivo |
@endif
@endif
@endforeach