@foreach($clients as $client) @endforeach
Name Image Created At Action
{{ $client->name }} {{ $client->created_at }} {!! Form::open(['route' => ['clients.destroy', $client->id], 'method' => 'delete']) !!}
{!! Form::button('', ['type' => 'submit', 'class' => 'btn btn-danger btn-xs', 'onclick' => "return confirm('Are you sure?')"]) !!}
{!! Form::close() !!}