@foreach($childs as $child)
  • @php $parent = \App\Models\Comment::find($child->parent_id)->first(); @endphp
    Author Images
    {{ $child->User->name }} در پاسخ {{ $parent->User->name }}
    پاسخ

    {{ $child->text }}

    @if ( count($child->replies) > 0 ) @endif
  • @endforeach