@extends('admin.layout.app') @section('title', 'View Contact Message') @push('styles') @endpush @section('content')
Contact Message Details
Back to Messages
Name

{{ $contact->name }}

Email

{{ $contact->email }}

Phone

{{ $contact->phone ?? 'N/A' }}

Subject

{{ $contact->subject }}

Message

{{ $contact->message }}

Submitted At

{{ $contact->created_at->format('Y-m-d H:i') }}

@endsection