@extends('admin.layout.master') @section('title', 'تفاصيل الرسالة') @section('content')

تفاصيل الرسالة

تعديل البيانات

@csrf @method('PATCH')
إسم المرسل رقم الجوال البريد الألكترونى نوع التواصل الحالة التاريخ
{{$row->name}} {{$row->country_code. $row->mobile}} {{$row->email}} @if($row->type == 'suggest') إقتراح @elseif($row->type == 'problem') مشكلة @elseif($row->type == 'report') إبلاغ @else أخري @endif {{substr($row->message,0,50)}} {{$row->read == 'true' ? "مقروء" : "غير مقروء"}} {{\Carbon\Carbon::parse($row->created_at)->toDateString()}}
محتوي الرسالة رد الإدارة وقت الرد
{{$row->message}} {{$row->reply ? $row->reply : "لم يتم الرد بعد"}} {{$row->reply_time ? \Carbon\Carbon::parse($row->reply_time)->toDateString() : "لم يتم الرد بعد"}}
@if ($errors->has('reply')) {{ $errors->first('reply') }} @endif
@stop