@foreach($contacts as $contact) @endforeach
الاسم البريد الإلكتروني الموضوع الرسالة تم الإرسال في الفعل
{{ $contact->name }} {{ $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() !!}
{{ $contacts->links() }}