@extends('admin.layouts.master') @section('title') Contacts Manage @endsection @section('content') Contacts No Name Email Phone subject Message Date @foreach ($contacts as $key => $contact) {{ $key + 1 }} {{ $contact->name }} {{ $contact->email }} {{ $contact->phone }} {{ $contact->subject }} {{ $contact->message }} {{ $contact->created_at }} @endforeach @endsection @push('js') @endpush