@foreach ($comments as $comment)
User Image

{{$comment->user->channel_name ? $comment->user->channel_name : $comment->user->fullname }} {{ $comment->created_at->diffForHumans() }}

{{ $comment->comment }}

@include('Template::partials.comment_reaction')
@if ($comment->parent_id == 0)
@endif
@if (!blank($comment->replies)) @lang('Show Reply') @endif
@foreach ($comment->replies ?? [] as $reply) @include($activeTemplate . 'partials.video.comment', ['comment' => $reply]) @endforeach
@if ($comment->parent_id == 0)
@endif
@endforeach