{{ trans('app.avatar') }}
@if(Gate::allows('view', $chat->customer)) {!! $chat->customer->getName() !!} @else {{ $chat->customer->getName() }} @endif {{-- Online --}}
{{-- --}}
{!! $chat->message !!}
{{ $chat->created_at->diffForHumans() }}
@foreach($chat->replies as $reply)
{!! $reply->reply !!}
{{ $reply->updated_at->diffForHumans() }}
@endforeach
{!! Form::open(['route' => ['admin.support.chat_conversation.reply', $chat], 'files' => true, 'id' => 'chat-form', 'data-toggle' => 'validator']) !!}
{{-- --}}
{!! Form::close() !!}