@extends('admin.layout.app') @section('title', 'View Contact Message') @push('styles') @endpush @section('content')
{{ $contact->name }}
{{ $contact->email }}
{{ $contact->phone ?? 'N/A' }}
{{ $contact->subject }}
{{ $contact->message }}
{{ $contact->created_at->format('Y-m-d H:i') }}