Name:
{{ $contact->full_name ?? '-' }}
@if($contact->phone)
@endif
Subject:
{{ $contact->subject ?? '-' }}
Message:
{{ $contact->message ?? '-' }}
Status:
@php
$badgeClass = $contact->is_read ? 'success' : 'warning';
$text = $contact->is_read ? 'Read' : 'Unread';
@endphp
{{ $text }}
Submitted Date:
{{ $contact->created_at ? $contact->created_at->format('d M Y, h:i A') : '-' }}