@lang('Chat section') @lang('Use the section below to chat with the speakers of this ticket')
@if($messages->count())
@foreach($messages as $message)
{{ $message->user->name }}
{!! $message->message !!}
{{ $message->created_at->diffForHumans() }}
@endforeach
@else
No comments @lang('No messages yet!')
@endif
{{ $this->form }}