@foreach($comments as $comment)
  • {{ \Carbon\Carbon::parse($comment->created_at)->format('F j, Y') }}

    {{$comment->body}}

    @if($comment->hasChildren()) @endif
    @if($comment->hasChildren())
    @include('tenant.partials.comments', ['comments' => $comment->children, 'recordComment' => $recordComment, 'modelId' => $modelId])
    @endif
  • @endforeach