@props(['comment', 'is_reply' => false])
@if(!$is_reply)
@include('site._partials.comment.content', ['comment' => $comment, 'bg_class' => ''])
@else
@include('site._partials.comment.content', ['comment' => $comment, 'bg_class' => 'bg-white'])
@endif
@if($comment->replies && $comment->replies->count() > 0)
@foreach($comment->replies as $reply)
@include('site._partials.comment.index', ['comment' => $reply, 'is_reply' => true])
@endforeach
@endif