Manage Contacts
{{--
Create Contact --}}
@if(session('success'))
@else
@endif
{{ session('success') }}
@endif
@if($contacts->isNotEmpty())
Name | 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') }} |
{{ $contacts->appends(request()->query())->links() }}
No contact submissions found
Contact submissions will appear here when users submit the contact form.