@php($currentUser=get_current_comment_user())
{{ $comment->userdata->username }}
@if($currentUser->authenticated) @if($currentUser->isAdmin || $currentUser->id === $comment->user_id) @if(get_buzzy_config('COMMENTS_USER_CAN_DELETE', true)) delete_outline @endif @if(get_buzzy_config('COMMENTS_USER_CAN_EDIT', true)) edit @endif @elseif(get_buzzy_config('COMMENTS_USER_CAN_REPORT', true)) flag @endif @endif @if($comment->userdata->link && $comment->userdata->type === 'auth') @endif {{ $comment->userdata->username }} @if(get_buzzy_config('COMMENTS_SHOW_USER_BADGE', true)) @if($comment->userdata->usertype) @if($comment->userdata->usertype === 'Admin') {{ trans('updates.usertypeadmin') }} @elseif($comment->userdata->usertype === 'moderator') {{ trans('updates.usertypestaff')}} @elseif($comment->userdata->usertype === 'banned') {{ trans('updates.usertypebanned')}} @elseif($comment->userdata->usertype === 'guest') {{__('Guest')}} @endif @endif @endif {{ $comment->created_at->diffForHumans() }} @if(!$comment->approve) {{ trans('admin.AwaitingApproval') }} @endif
{{ __('This comment contains spoilers.')}} {{ __('Click here if you want to read.')}}

{!! parse_comment_text($comment->comment) !!}

@if($comment->isRepliesAllowed()) @include('comments.pages._sub_comments', ['comment' => $comment]) @endif