Public Inquiries & Municipal Leads

Review incoming sanitation service requests, municipal tenders, and general support inquiries submitted from the public portal.

Total Inquiries

{{ $counts['total'] }}

All logged public submissions
New (Unread)

{{ $counts['new'] }}

Awaiting initial review
In Review (Read)

{{ $counts['read'] }}

Under evaluation
Resolved

{{ $counts['resolved'] }}

Addressed & completed
@if($search) @endif
@if($search || $selectedStatus) @endif
@forelse($inquiries as $inquiry) @empty @endforelse
Date & Time Sender Info Subject & Message Status Actions
{{ $inquiry->created_at->format('d M Y') }} {{ $inquiry->created_at->format('h:i A') }}
{{ strtoupper(substr($inquiry->name, 0, 1)) }}
{{ $inquiry->name }} @if($inquiry->phone) 📞 {{ $inquiry->phone }} @endif ✉️ {{ $inquiry->email }}
{{ $inquiry->subject ?: 'General Sanitation Inquiry' }}

{{ $inquiry->message }}

@if($inquiry->status === 'new') New @elseif($inquiry->status === 'read') In Review @else Resolved @endif

No contact inquiries found

Public inquiries submitted from the website will appear here.

@if($inquiries->hasPages())
{{ $inquiries->links() }}
@endif
@if($viewingInquiryId && $selectedInquiry)

Inquiry #{{ $selectedInquiry->id }}

@if($selectedInquiry->status === 'new') New @elseif($selectedInquiry->status === 'read') In Review @else Resolved @endif
Logged on {{ $selectedInquiry->created_at->format('d M Y, h:i A') }}
Full Name {{ $selectedInquiry->name }}
Phone @if($selectedInquiry->phone) {{ $selectedInquiry->phone }} @else Not Provided @endif
Requirement Subject
{{ $selectedInquiry->subject ?: 'General Sanitation Inquiry' }}
Message Details
{{ $selectedInquiry->message }}
Update Inquiry Status Track progress of this lead
@endif @if($showDeleteModal)

Delete Contact Inquiry?

Are you sure you want to permanently remove this inquiry record? This action cannot be undone.

@endif