{{ $contact->subject }}
{{ trans('dashboard.contact.writtenBy') }}
{{ $contact->fullname ?? $contact->email }}
|
{{ $contact->created_at }}
{!! trans('dashboard.chat.message') !!}
{{ $contact->content }}
{!! trans('dashboard.contact.replies') !!}
@forelse ($contact->replies as $reply)
@endif
@empty
@endforelse
{{ $reply->sender->fullname }}
{{ $reply->created_at->format("M d, Y") }}
{!! $reply->reply !!}
{!! trans('dashboard.general.delete') !!}
@if (!$loop->last)
@endif
{!! trans('dashboard.contact.no_replies') !!}
{!! Form::open(['route'=>'dashboard.contact.store','method'=>'POST','files'=>true,'class'=>'form-horizontal']) !!}
{!! Form::close() !!}
{!! Form::radio('send_type', 'fcm', null , ['class' => 'custom-control-input' , 'id' => 'fcm']) !!}
{!! Form::radio('send_type', 'sms', null , ['class' => 'custom-control-input' , 'id' => 'sms']) !!}