@extends('layouts.admin') @section('title', 'Clientes') @section('content')

Clientes

Directorio comercial y crédito

@forelse($clients as $c) @empty @endforelse
Código Negocio Tipo Representante Contacto Crédito Estado
{{ $c->code }} {{ $c->business_name }} {{ $c->businessType->name }} {{ $c->representative_name }} {{ $c->whatsapp ?: $c->phone }} @if($c->creditProfile?->is_enabled) ${{ number_format((float) $c->creditProfile->credit_limit, 2) }} · {{ $c->creditProfile->credit_days }} días @else Sin crédito @endif {{ $c->is_active ? 'Activo' : 'Inactivo' }}
No existen clientes.
@if($clients->hasPages()) @endif
@foreach($clients as $c) @endforeach @endsection