@php $VerEditor = auth()->user()->can('Clientes - Visor') || auth()->user()->can('Clientes - Editor') @endphp @if($VerEditor) @extends('layouts/app') @section('tituloModulo', 'CLIENTES') @section('contenido')
| RFC | ESTABLECIMIENTO | NOMBRE | CORREO | TELÉFONO | DIRECCIÓN | FECHA DE CONTRATACIÓN | FECHA DE VENCIMIENTO | ESTATUS |
|---|---|---|---|---|---|---|---|---|
| {{ $item->rfc_config }} | {{ $item->establecimiento }} | {{ $item->nombre }} | {{ $item->correo }} | {{ $item->telefono_config }} | {{ $item->direccion_config }} | {{ date("d/m/Y", strtotime($item->fecha_contratacion)) }} | {{ date("d/m/Y", strtotime($item->fecha_vencimiento)) }} | @if($item->estatus == 'Activo') {{$item->estatus}} @endif @if ($item->estatus == 'Inactivo') {{$item->estatus}} @endif |