Detalles del Cliente
Datos del Cliente
Nombre
{{ $client->customer->name }}
Email
{{ $client->customer->email }}
Teléfono
{{ $client->customer->phone }}
Estado
@php $status = $client->customer->status; $badgeClass = match($status) { '1' => 'success', '0' => 'danger', '2' => 'primary', default => 'secondary' }; $statusText = match($status) { '1' => 'Activo', '0' => 'Inactivo', '2' => 'Facturable', default => 'Desconocido' }; @endphp {{ $statusText }}
Fecha de Alta
{{ $client->customer->created_at->format('d/m/Y') }}
Datos Facturables
RFC
{{ $client->customer->rfc }}
Nombre Fiscal
{{ $client->customer->tax_name }}
Régimen Fiscal
{{ $client->customer->taxRegime->name }}
Uso de CFDI
{{ $client->cfdiUsage->code }} {{ $client->cfdiUsage->description }}
Limite de credito
$ {{ $client->credit->limit_amount }}
Ver más