@if(!empty($comments)) @foreach($comments as $comment) @if(empty($comment->replied_to_id))
  1. Profile Pic
    {{ $comment->comment}}
    {{ $comment->created_at->format('Y/m/d')}} at {{ $comment->created_at->format('g:i A')}}
    @foreach($comments as $r_comment) @if($r_comment->replied_to_id == $comment->id) @endif @endforeach
  2. @endif @endforeach @endif