@php function youAuth($creator, $creator_cookie = false) { $you = false; if ($creator_cookie) { $you = $creator->author_email == (get_comment_author() ? get_comment_author()->author_email : null); } else { if (auth()->check()) { $you = $creator->id == auth()->id(); } } return $you ? ' (' . __('blog::front.you') . ')' : ''; } @endphp
{{ $comment->content }}
@foreach($comment->comments->reverse() as $comment_2)-
@if ($comment_2->approved == 0)
@lang('blog::front.waiting_for_approval')
@endif
@if ($comment_2->comments_count > 3)
@lang('blog::front.view_prev_replies')
@endif
@endforeach
{{ $comment_2->content }}
@foreach($comment_2->comments->reverse() as $comment_3)-
@if ($comment_3->approved == 0)
@lang('blog::front.waiting_for_approval')
@endif
@endforeach
{{ $comment_3->content }}