@extends('layouts/contentNavbarLayout') @section('title', 'Contact Us Messages') @section('content')
Manage and respond to customer inquiries
| Name | Subject | Status | Date | Actions | ||
|---|---|---|---|---|---|---|
|
{{ strtoupper(substr($contact->name, 0, 1)) }}
{{ $contact->name }}@if($contact->phone) {{ $contact->phone }} @endif |
{{ $contact->email }} | {{ $contact->subject }} | @php $statusClasses = [ 'pending' => 'bg-warning', 'in_progress' => 'bg-info', 'resolved' => 'bg-success', 'closed' => 'bg-secondary' ]; @endphp {{ ucfirst(str_replace('_', ' ', $contact->status)) }} |
{{ $contact->created_at->format('M d, Y') }} {{ $contact->created_at->format('h:i A') }} |
|
|
No contact messages foundThere are no contact messages matching your criteria. |
||||||