@extends('admin.admin') @section('content')

Contacts List

Contact List Table
{{-- --}} @foreach ($contacts as $key => $contact) {{-- --}} {{-- --}} {{-- --}} @endforeach
# Name Email Message Created AtAction
{{ $key + 1 }} {{ $contact['name'] }} {{ @$contact['name'] }} {{ @$contact['email'] }} {{ @$contact['message'] }} {{ @$contact['created_at'] }}{{ $contact['status'] == 1 ? 'Approved' : 'Rejected' }} Edit
@csrf
@endsection