@foreach($comments as $comment)
  • Image
    {{ data_get($comment, 'user.first_name') }} {{ $diff = Carbon\Carbon::parse($comment->created_at)->diffForHumans() }}

    {{ $comment->comment ?? '' }}

    @csrf
    @if(!blank($reply = data_get($comment, 'reply'))) @include('site.post.comment', [ 'comments' => $reply, 'is_children' => true, ]) @endif
  • @endforeach