Contact Requests Messages submitted through the WEPESI marketing site contact form.
{{ session('success') }}
@endif
@if(session('error'))
{{ session('error') }}
@endif
New
{{ $stats['new'] ?? 0 }}
In progress
{{ $stats['in_progress'] ?? 0 }}
Resolved
{{ $stats['resolved'] ?? 0 }}
Total received
{{ $stats['total'] ?? 0 }}
Inbox
@if($requests->count() === 0)
@else
No contact requests yet
Submissions from your marketing site form will appear here.
| From | Organization | Message | Status | Received | Actions |
|---|---|---|---|---|---|
|
{{ $r->name }}
{{ $r->email }}
@if($r->phone)
{{ $r->phone }}
@endif
|
{{ $r->organization ?: '—' }} | {{ $r->message ?: '—' }} |
{{ $r->status_label }} |
{{ $r->created_at?->format('M j, Y') }}
{{ $r->created_at?->format('g:i A') }} |
View |
{{ $requests->links() }}
@endif