@if($filtros['#'])
| {{($key+1)}} |
@endif
@if($filtros['Name'])
{{($item->name)}} |
@endif
@if($filtros['Type'])
{{($item->type)}} |
@endif
@if($filtros['Fecha de Creacion'])
@if($item->created_at != null)
{{($item->created_at->format('d-m-Y'))}} |
@else
{{($item->created_at)}} |
@endif
@endif
@if($filtros['Fecha de Actualizacion'])
@if($item->updated_at != null)
{{($item->updated_at->format('d-m-Y'))}} |
@else
{{($item->updated_at)}} |
@endif
@endif
@if($filtros['Usuario Creador'])
{{($item->creadopor)}} |
@endif
@if($filtros['Usuario Act'])
{{($item->actpor)}} |
@endif
@endforeach