@extends('layouts.app') @section('title', 'Gestión de Clientes') @section('header', 'Gestión de Clientes') @section('content')
@if ($clientes->count() > 0)
@foreach ($clientes as $cliente) @endforeach
Documento Nombre Completo Teléfono Email Estado Fecha Registro Acciones
{{ $cliente->documento }} {{ $cliente->nombre }} {{ $cliente->apellido }} {{ $cliente->telefono ?? '-' }} {{ $cliente->email ?? '-' }} {{ $cliente->estado ? 'Activo' : 'Inactivo' }} {{ $cliente->created_at->format('d/m/Y') }}
@csrf @method('DELETE')
Mostrando 1 a 10 de {{ $clientes->count() }} registros
@else

No hay clientes registrados

Crear primer cliente
@endif
@endsection