@extends('admin.layouts.master') @section('title') Contacts Manage @endsection @section('content')

Contacts

@foreach ($contacts as $key => $contact) @endforeach
No Name Email Phone subject Message Date
{{ $key + 1 }} {{ $contact->name }} {{ $contact->email }} {{ $contact->phone }} {{ $contact->subject }} {{ $contact->message }} {{ $contact->created_at }}
@endsection @push('js') @endpush