@extends('layouts.dashboard') @section('title', $msg->subject ?: t('رسالة','Message')) @section('page-title','📨 '.t('رسالة من','Message from').' '.$msg->name) @section('content')

{{ $msg->subject ?: t('بدون موضوع','No subject') }}

← {{ t('رجوع','Back') }}
@if($msg->phone)@endif
{{ t('الاسم','Name') }}{{ $msg->name }}
{{ t('البريد','Email') }}{{ $msg->email }}
{{ t('الهاتف','Phone') }}{{ $msg->phone }}
{{ t('التاريخ','Date') }}{{ \Carbon\Carbon::parse($msg->created_at)->format('Y-m-d H:i') }}
{{ $msg->message }}
✉️ {{ t('رد بالبريد','Reply by Email') }} @if($msg->phone)💬 WhatsApp@endif
@csrf @method('DELETE')
@endsection