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

Contacts

@forelse ($contacts as $contact) @empty @endforelse
ID Full Name Email Phone Message Created At
{{ $contact->id }} {{ $contact->fullname }} {{ $contact->email }} {{ $contact->phone }} {{ $contact->message }} {{ $contact->created_at->format('Y-m-d H:i') }}
No contacts found.
@endsection