@include('partials.dashboard.head') @include('partials.dashboard.sidebar', ['page' => 'contact_messages']) @include('partials.dashboard.header')

Balas Pesan

  • Balas pesan masuk.
{{--
Personal Information

Basic info, like your name and address, that you use on Nio Platform.

--}}
Nama {{$contact->name}}
Email {{$contact->email}}
Nomor Telepon {{$contact->phone_number}}
Tanggal {{idn_date($contact->created_at, 'H:i l, d F Y')}}
Status @if (filled($contact->deleted_at)) Dihapus @elseif ($contact->status == '0') Belum Dibalas @elseif ($contact->status == '1') Sudah Dibalas @else Tidak Diketahui @endif
{{--
--}}
Pesan
{{$contact->message}}
@if ($contact->status != '1')
{{--
--}}
@csrf
@error('reply_message') {{$message}} @enderror
@endif
@include('partials.dashboard.footer', ['rich_editor' => false])