@extends('layouts.app') @section('content') @extends('ventas.menu')
@if (in_array(auth()->user()->rol->id, [1]))

Clientes

Nuevo
@endif

@php $dias_credito_cliente = [ 1 => 'Contado', 2 => '15 dias', 3 => '30 días', 4 => '45 días', 5 => '60 días', 6 => '8 días', ]; @endphp @foreach ($clientes as $cliente) @endforeach
ID NOMBRE NIT DPI CORREO REFERENCIA CREDITO EJECUTIVO Ultima Actualizacion ACCIÓN
{{ $cliente['id'] }} {{ $cliente['nombre'] }} {{ $cliente['nit'] }} {{ $cliente['dpi'] }} {{ $cliente['correo_electronico'] }} {{ $cliente['referencia'] }} {{ $dias_credito_cliente[$cliente['condiciones_pago']] ?? 'No Disponible' }} {{ $cliente->info_ejecutivo['name'] ?? '' }} {{ $cliente['updated_at']->format('d/m/Y') }} @if (in_array(auth()->user()->rol->id, [1])) @endif
@endsection