@vite(['resources/css/app.css', 'resources/js/app.js'])
{{ $contact->name }}
@if(!$contact->isRead()) New @endif{{ $contact->email }}
Subject: {{ $contact->subject }}
{{ Str::limit($contact->message, 150) }}
{{ $contact->created_at->format('M j, Y') }}
{{ $contact->created_at->format('g:i A') }}
@if($contact->isRead())Read {{ $contact->read_at->diffForHumans() }}
@endifContact form submissions will appear here when users send messages.