{{ $contactInquiry->name }}
{{ $contactInquiry->phone ?: 'Not provided' }}
{{ $contactInquiry->company ?: 'Not provided' }}
{{ $contactInquiry->subject_label }}
{{ $contactInquiry->created_at->format('M d, Y h:i A') }}
{{ $contactInquiry->status_label }}
@if($contactInquiry->responded_at)
{{ $contactInquiry->responded_at->format('M d, Y h:i A') }}
@endif
@if($contactInquiry->responded_at && $contactInquiry->respondedBy)
{{ $contactInquiry->respondedBy->name }}
@endif
{{ $contactInquiry->message }}
@if($contactInquiry->admin_notes)
{{ $contactInquiry->admin_notes }}
@endif