@extends('backend.app') @section('title', 'Contact Details') @section('content')
Message Details
{{ ucfirst($contact->status) }}
{{ strtoupper(substr($contact->name, 0, 1)) }}

{{ $contact->name }}

{{ $contact->created_at->format('M d, Y') }} at {{ $contact->created_at->format('h:i A') }}

{{ $contact->email }}

{{ $contact->phone ?? 'Not Provided' }}

#CNT-{{ str_pad($contact->id, 5, '0', STR_PAD_LEFT) }}

{{ $contact->subject ?? 'General Inquiry' }}

{{ $contact->message }}
Back to List
@endsection @push('scripts') @endpush @push('style') @endpush