@extends('backend.layouts.app')
@section('title', 'Liên hệ')
@section('content')
@include('backend.layouts.content-header', ['page' => 'Liên hệ'])
@include('backend.components.notification')
| Subject |
{{ $contact->subject }} |
| Name |
{{ $contact->name }} |
| Phone |
{{ $contact->phone }} |
| Email |
{{ $contact->email }} |
{{-- --}}
{{-- | {{ __('label.address') }} | --}}
{{-- {{ $contact->address }} | --}}
{{--
--}}
| Message |
{{ $contact->message }} |
@if(isValidEmail($contact->email))
@endif
@if($contact->replies->count())
| Time |
Subject |
Content |
@foreach($contact->replies as $reply)
| {{ $reply->created_at }} |
{{ $reply->subject }} |
{!! $reply->content !!} |
@endforeach
@endif
@endsection
@push('css')