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