@extends('layouts.app') @section('title', 'Contact Messages & Inquiries Inbox') @section('content')
| Sender & Contact | Inquiry Type / Subject | Message Details | Date | Status | Actions |
|---|---|---|---|---|---|
|
{{ $msg->name }}
{{ $msg->email }} • {{ $msg->phone }}
|
{{ $msg->inquiry_type ?: 'General Inquiry' }}
{{ $msg->subject ?: 'Showroom Inquiry' }}
|
{{ $msg->message }}
|
{{ $msg->created_at ? $msg->created_at->diffForHumans() : 'Recent' }} | @if($msg->status === 'Unread') Unread @elseif($msg->status === 'Replied') Replied @else Read @endif |
@if($msg->status === 'Unread')
@endif
|
| No messages found in inbox. | |||||