@extends('admin.layout') @section('title', 'Clientes - Admin IMOZA') @section('header', 'Clientes') @section('content')
@forelse($customers as $customer) @empty @endforelse
Nombre Email Teléfono Acciones
{{ $customer->name }} {{ $customer->email ?: '-' }} {{ $customer->phone ?: '-' }}
@csrf @method('DELETE')
No hay clientes registrados.
{{ $customers->links() }}
@endsection