@extends('admin.layouts.app')
@section('title', 'Chi tiết liên hệ')
@section('page-title', 'Chi tiết liên hệ')
@section('content')
{{ $contact->name }}
{{ $contact->email }}
@if($contact->status === 'new')
Mới
@elseif($contact->status === 'read')
Đã đọc
@else
Đã trả lời
@endif
{{ $contact->created_at->format('d/m/Y H:i') }}
Thông tin liên hệ
@if($contact->phone)
@endif
{{ $contact->created_at->format('d/m/Y H:i') }}
Chủ đề
{{ $contact->subject }}
@if($contact->status !== 'replied')
@else
Trả lời đã gửi
{{ $contact->reply_message }}
Gửi lúc: {{ $contact->replied_at->format('d/m/Y H:i') }}
@endif
@if($contact->status === 'new')
@endif
@endsection