@if ($filtros['numero'])
| {{ $key + 1 }} |
@endif
@if ($filtros['nombre'])
{{ $item->puesto_nombre }} |
@endif
@if ($filtros['administra'])
@if ($item->puesto_administra_tiket == 1)
Si
@else
No
@endif
|
@endif
@if ($filtros['puesto_recibe_tiket'])
@if ($item->puesto_recibe_tiket == 1)
Si
@else
No
@endif
|
@endif
@if ($filtros['departamento'])
@if ($item->departamento_id != null)
{{ $item->departamento->departamento_nombre }}
@else
(No definido)
@endif
|
@endif
@if ($filtros['estado'])
@if ($item->puesto_estado == 1)
Activo
@else
Inactivo
@endif
|
@endif
@endforeach