@extends('layouts.app') @section('content')
Clientes
@foreach ($clientes as $key => $cliente) @endforeach
# Nombre Dirección Telefono 1 Telefono 2 NIT Acciones
{{ $key + 1 }} {{ $cliente->name }} {{ $cliente->home_address }} {{ $cliente->phone_number }} {{ $cliente->phone_number2 }} {{ $cliente->nit }}
@endsection @section('footer') @endsection