| Cliente |
RUT |
Tipo |
Contacto |
Estado |
Acciones |
@forelse ($clients as $client)
|
{{ $client->business_name ?: $client->contact_name }}
@if($client->business_name)
{{ $client->contact_name }}
@endif
|
{{ $client->rut }} |
@if($client->client_type === 'company')
Empresa
@else
Persona
@endif
|
{{ $client->email ?: '—' }}
{{ $client->phone ?: '—' }}
|
@if($client->is_active)
Activo
@else
Inactivo
@endif
|
|
@empty
|
No hay clientes registrados aún.
|
@endforelse
{{ $clients->links() }}