@foreach($comments as $child) @php $marginLeft = 50 * $child->depth; @endphp
  • @if ($child->childComments->isEmpty()) @endif
    {{ $child->id }} {{ $child->user->name }} {{ $child->created_at }}
    {!! nl2br($child->content) !!}
    답글 @if ($child->childComments->count() > 0) 답글 {{ $child->all_children_count }}개 숨기기 @endif
    @if ($child->childComments->count()) @include('enrollment.comment-children', ['comments' => $child->childComments]) @endif
  • @endforeach