@foreach($contacts as $contact) @endforeach
Name Phone Email Subject Message Created At Action
{{ $contact->name }} {{ $contact->phone }} {{ $contact->email }} {{ $contact->subject }} {{ $contact->message }} {{ $contact->created_at }} {!! 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() !!}