@extends('fragments.fullTemplate') @section('titulo') Servicio al cliente @endsection @section('contenido') @php //use App\Http\Controllers\plaza_de_cobros; //$objPlaza = new plaza_de_cobros(); @endphp
@if(session()->has('success')) @endif @if(session()->has('warning')) @endif @if(session()->has('error')) @endif @if (count($errors) > 0) @endif
@include('Requisicion_compra.Notificacion.notificacion_requisicion_modal') @include('Control_documentos.Notificacion.notificacion_documento_version')

{{$clientes->count()}} resultados en esta página

@if($clientes->count()) @foreach ($clientes as $cliente) @if($cliente->cotizaciones->count() > 0) @php $contactos = ""; $numeros = ""; $correos = ""; $count_contactos = 0; @endphp @endif @endforeach @else @endif
Tipo de cliente Nombre Empresa RFC Creada Estatus Contactos Teléfono Correos
@if ($cliente->id_cliente_tipo == 2) {{ $cliente->tipo }} @else {{ $cliente->tipo }} @endif {{($cliente->nombre_empresa?$cliente->nombre_empresa:"Cliente Prospecto")}} {{$cliente->rfc}} {{strftime("%d/%m/%Y", strtotime($cliente->created_at))}} @if ($cliente->estatus_cliente == 'Activa') {{ $cliente->estatus_cliente }} @elseif ($cliente->estatus_cliente == 'Prospecto') {{ $cliente->estatus_cliente }} @elseif ($cliente->estatus_cliente == 'Inactiva') {{ $cliente->estatus_cliente }} @else {{ $cliente->estatus_cliente }} @endif @foreach ($cliente->contactos_activos as $contacto) @php if ($count_contactos >= 1) { $contactos .= ", "; $numeros .= ", "; $correos .= ", "; } $contactos .= $contacto->nombre_contacto; $numeros .= $contacto->telefono; $correos .= $contacto->correo; $count_contactos++; @endphp @endforeach {{$contactos}} {{$numeros}} {{$correos}}
@if ($permisos->verqr == 1) @endif
No se encontraron registros
@include('Servicio_al_cliente.bitacora') @endsection