|
{{ $item->cliente_entidad_documento }}
|
{{ $item->cliente_entidad_nombre }}
|
|
{{ $item->cliente_entidad_sigla }}
|
{{ $item->cliente_entidad_telefono_principal }}
|
@if ($item->cliente_entidad_otros_telefonos)
@php
$str = $item->cliente_entidad_otros_telefonos;
$new = str_replace('["','',$str);
$new = str_replace('"]', '', $new);
$new = str_replace(',', ' , ', $new);
$telefono_formateado = str_replace('"', '', $new);
@endphp
{{ $telefono_formateado }}
@else
@endif
|
@if ($item->localidad_nombre)
{{ $item->localidad_nombre }}
@else
@endif
|
{{ $item->cliente_entidad_direccion }}
|
{{ $item->cliente_entidad_email }}
|
@if ($item->cliente_entidad_autoriza_envio_email)
Si
|
@else
No
|
@endif
@if ($item->cliente_entidad_es_recaudador)
Si |
@else
No |
@endif
@if ($item->cliente_entidad_visualice_impuesto)
Si |
@else
No |
@endif
@if ($item->cliente_entidad_visualice_factura)
Si |
@else
No |
@endif
@if ($item->empleado_nombres)
{{ $item->empleado_nombres.' '.$item->empleado_apellido1.' '.$item->empleado_apellido2 }}
@else
@endif
|
@if (is_null($item->cliente_entidad_estado_id))
|
@else
@if ($item->cliente_entidad_estado_id)
Activa |
@else
Inactiva |
@endif
@endif
@if($item->created_user)
{{$controlador->getEmpleado($item->created_user)}}
@else
@endif
|
@if($item->created_at!='0000-00-00 00:00:00' && $item->created_at!=null)
{{date('d-m-Y', strtotime($item->created_at))}}
@else
@endif
|
@if($item->updated_user)
{{$controlador->getEmpleado($item->updated_user)}}
@else
@endif
|
@if($item->updated_at!=null)
{{date('d-m-Y', strtotime($item->updated_at))}}
@else
@endif
|
@endforeach