@extends('dashboard.layout.layout') @section('content') {{--
--}}

{{ $contact->title }}

{!! trans('dashboard.chat.message') !!}

{{ $contact->content }}

{{--

{{ $contact->content }}

--}}
{!! trans('dashboard.contact.replies') !!}
{{--
  • {!! trans('dashboard.contact.reply_count') !!} / {{ $contact->replies->count() }}
--}}

{{ $contact->replies->count() }}

    @foreach ($contact->replies as $reply)
    Avatar
    {{ $reply->sender->fullname }}
    {!! $reply->reply !!}
    {{-- {{ $reply->created_at->diffForHumans() }} --}}
    @endforeach
{!! trans('dashboard.contact.reply') !!}
{!! Form::open(['route'=>'dashboard.contact.store','method'=>'POST','files'=>true,'class'=>'form-horizontal']) !!}
{!! Form::close() !!}
{{--
--}} @include('dashboard.layout.delete_modal') @endsection @section('page_styles') @endsection @section('page_scripts') @endsection