@extends('admin.layout.main') @section('title', 'Contacts | ') @section('content')
All Contacts
@if (Session::has('msg'))

{{ Session::get('msg') }}

@endif @php $startIndex = ($contacts->currentPage() - 1) * $contacts->perPage() + 1; @endphp @foreach ($contacts as $contact) @endforeach
# Product Name Name Email Phone Received At Action
{{ $startIndex++ }} {{ $contact->title }} {{ $contact->name }} {{ $contact->email }} {{ $contact->phone }} {{ \Carbon\Carbon::parse($contact->created_at)->isoFormat('Do MMMM YYYY, h:mm A') }}
@csrf @method('DELETE')
{{ $contacts->links() }}
@endsection