@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

{{ $post['approved_comments_count'] }} @lang('blog::front.comments')

@if ($post['comments_count'] > 10) @lang('blog::front.view_prev_comments') @endif
{{--
--}}
    @foreach($comments as $comment)
  1. @if ($comment->comments_count > 3) @endif
      @foreach($comment->comments->reverse() as $comment_2)
    1. @if ($comment_2->comments_count > 3) @lang('blog::front.view_prev_replies') @endif
        @foreach($comment_2->comments->reverse() as $comment_3)
      1. @endforeach
    2. @endforeach
  2. @endforeach

@lang('blog::front.leave_reply')

@csrf

@lang('blog::front.msg_email_published') @lang('blog::front.fields_are_marked') *

@if (!auth()->check())

@endif