{{-- Custom Styles for Professional Table Look --}}
Home
Contact
Dashboard
Home
Dashboard
@if(session('success'))
{{ session('success') }}
×
@endif
Contact Messages
#
Name
Email
Subject
Message
Status
Received At
Actions
@forelse($contacts as $contact)
{{ $contacts->firstItem() + $loop->index }}
{{ $contact->name }}
{{ $contact->email }}
{{ $contact->subject }}
{{ Str::limit($contact->message, 50) }}
@if($contact->status === 'pending')
Pending
@elseif($contact->status === 'read')
Read
@endif
{{ $contact->created_at->timezone('Asia/Kolkata')->format('d M Y H:i') }}
@csrf @method('DELETE')
@empty
No contacts found{{ request('search') ? " for '" . request('search') . "'" : '' }}.
@endforelse
{{ $contacts->links('pagination::bootstrap-4') }}
Contact Details
Name:
Email:
Subject:
Message:
@csrf
Reply to Contact
To:
Name:
Your Reply
{{-- Added SweetAlert2 link --}}