|
{{ $item->cliente_entidad_nombre }}
|
{{ $item->cliente_entidad_contacto_nombres }}
|
{{ $item->cliente_entidad_contacto_apellido1 }}
|
{{ $item->cliente_entidad_contacto_apellido2?$item->cliente_entidad_contacto_apellido2:'' }}
|
@php
$str = $item->cliente_entidad_contacto_telefonos;
$new = str_replace('["','',$str);
$new = str_replace('"]', '', $new);
$new = str_replace(',', ' , ', $new);
$telefono_formateado = str_replace('"', '', $new);
@endphp
{{ $telefono_formateado }}
|
{{ $item->cliente_entidad_contacto_email?$item->cliente_entidad_contacto_email:'' }}
|
{{ $item->cliente_entidad_contacto_cargo?$item->cliente_entidad_contacto_cargo:'' }}
|
{{ $item->cliente_entidad_contacto_observaciones?$item->cliente_entidad_contacto_observaciones:'' }}
|
{{--
@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