Manage Contacts

@if(session('success')) @endif @if($contacts->isNotEmpty())
@foreach($contacts as $contact) @endforeach
Name Email Phone Subject Message Date Actions
{{ $contact->name }} {{ $contact->email }} {{ $contact->phone ?? 'N/A' }} {{ Str::limit($contact->subject, 30) }} {{ Str::limit($contact->message, 50) }} {{ $contact->created_at->format('M d, Y H:i') }}
@csrf @method('DELETE')
{{ $contacts->appends(request()->query())->links() }}
@else
No contact submissions found

Contact submissions will appear here when users submit the contact form.

@endif