{{ @$blogComments->count() }} {{ __('comments') }}
@foreach($blogComments as $blogComment)
avatar
{{ @$blogComment->user->name }}
{{ @$blogComment->created_at->format(' j M, Y') }} AT @php $timestamp = strtotime($blogComment->created_at); $time = date("h:i A", $timestamp); @endphp {{ @$time }}

{{ $blogComment->comment }}

@if(@Auth::user()) @endif
@foreach($blogComment->blogCommentReplies as $reply)
avatar
{{ @$reply->user->name }}
{{ @$reply->created_at->format(' j M, Y') }} AT @php $timestamp = strtotime($reply->created_at); $time = date("h:i A", $timestamp); @endphp {{ @$time }}

{{ $reply->comment }}

@if(@Auth::user()) @endif
@endforeach
@endforeach