@extends('layouts.app', ['class' => 'g-sidenav-show bg-gray-100']) @php $breadcrumbItems = [ ['label' => 'Liên hệ', 'url' => route('admin.contact.index')], ['label' => 'Chi tiết liên hệ'] ]; @endphp @push('css') @endpush @section('content') @include('layouts.header')

Chi tiết liên hệ

Tên: {{ $contact->full_name }}

Email: {{ $contact->email }}

Số điện thoại: {{ $contact->phone }}

Nội dung:

{!! Str::limit(strip_tags($contact->message), 200, '...') !!}

Trạng thái: {{ $contact->getStatusText() }}


{{-- Form phản hồi ẩn --}}
@if($contact->replies->count())

Lịch sử phản hồi

@foreach($contact->replies as $reply)

Người phản hồi: {{ $reply->admin_name }}

Thời gian: {{ \Carbon\Carbon::parse($reply->reply_date)->format('H:i d/m/Y') }}

Nội dung:

{!! ($reply->reply_message) !!}
@endforeach @endif
@endsection @push('js') @endpush