@foreach($contacts as $contact) @endforeach
Name Mobile Email Action
{!! $contact->name !!} {!! $contact->mobile !!} {!! $contact->email !!} {!! Form::open(['route' => ['contacts.destroy', $contact->id], 'method' => 'delete']) !!}
{!! Form::button('', ['type' => 'submit', 'class' => 'btn btn-danger btn-xs', 'onclick' => "return confirm('Are you sure?')"]) !!}
{!! Form::close() !!}