{{ $comment->author_name }} @if($comment->author_website) @endif {{ \Morilog\Jalali\Jalalian::fromCarbon($comment->created_at)->format('Y/m/d H:i') }}
@if(\App\BlogSetting::getValue('comment_votes_enabled', true))
@endif
{!! nl2br(e($comment->content)) !!}
@if($depth < \App\BlogSetting::getValue('comments_max_depth', 3)) @endif @if($comment->replies->count() > 0) @foreach($comment->replies as $reply) @include('user.blog.partials.comment', ['comment' => $reply, 'depth' => $depth + 1, 'post' => $post ?? null]) @endforeach @endif