@extends('layouts.admin') @section('page_title','Message Details') @section('content')

Message from {{ $msg->name }}

Back
Name:
{{ $msg->name }}
Email:
{{ $msg->email }}
Phone:
{{ $msg->phone??'-' }}
Date:
{{ \Carbon\Carbon::parse($msg->created_at)->format('d M Y, h:i A') }}
Subject:
{{ $msg->subject }}
{{ $msg->message }}
Reply via Email @if($msg->phone) WhatsApp@endif
@csrf @method('DELETE')
@endsection