@foreach ($comments as $idx => $comment) @if (! $comment['isAdminReply'])
{!! isset($comment['from']['name']) ? $comment['from']['name'] : ( isset($comment['name']) ? $comment['name'] : (isset($comment['username']) ? $comment['username'] : '--' ) ) !!}
{!! emoji_unified_to_html( isset($comment['message']) ? $comment['message'] : ( isset($comment['text']) ? $comment['text'] : ' ----' ) ) !!}
Data/Hora: {{ \Carbon\Carbon::parse( isset($comment['created_time']) ? $comment['created_time'] : $comment['timestamp'])->format('d/m/Y H:i:s') }}
@if ($idx < ( sizeof($comments)-1) )
@endif @endif @endforeach