@extends('layouts.panel') @section('title', 'Clientes') @section('content')
@forelse ($clients as $client) @empty @endforelse
Cliente RUT Tipo Contacto Estado Acciones
{{ $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
@csrf @method('DELETE')
No hay clientes registrados aún.
{{ $clients->links() }}
@endsection