@foreach($clientes as $clientes) @endforeach
Id Nombre Email Password Telefono Direccion Created At Updated At Action
{{ $clientes->id }} {{ $clientes->nombre }} {{ $clientes->email }} {{ $clientes->password }} {{ $clientes->telefono }} {{ $clientes->direccion }} {{ $clientes->created_at }} {{ $clientes->updated_at }} {!! Form::open(['route' => ['clientes.destroy', $clientes->id], 'method' => 'delete']) !!}
{!! Form::button('', ['type' => 'submit', 'class' => 'btn btn-outline-danger btn-xs', 'onclick' => "return confirm('Are you sure?')"]) !!}
{!! Form::close() !!}