@extends('layouts.admin') @section('title', 'View Contact Message') @section('page-title', 'Contact Message Details') @section('content')
Back to Messages

{{ $contact->subject }}

{{ $contact->created_at->format('M d, Y \a\t h:i A') }} @if(!$contact->is_read) New @endif

Sender Information

{{ $contact->name }}

{{ $contact->email }}

@if($contact->phone) {{ $contact->phone }} @else Not provided @endif

Message

{{ $contact->message }}

Reply via Email @if($contact->phone) Call @endif
@csrf @method('DELETE')
@endsection