$comment->status === 'pending']) data-comment-id="{{ $comment->id }}" style="margin-left: {{ $level ? 30 : 0 }}px;">
{{-- Comment Attachments --}}
@if($comment->attachments && $comment->attachments->count() > 0)
@endif
{{-- Dynamic Reply Form Container --}}
{{-- Dynamic Edit Form Container --}}
{{-- Child Comments --}}
@if($comment->children && $comment->children->count() > 0 && $level < 3)
@endif
@if($comment->canEdit())-
@if(!is_logged_in() && $comment->email_verified_at)
{{-- 비회원 댓글 수정 (이메일 인증 완료) --}}
Edit
Email/Password required
@elseif(is_logged_in())
{{-- 회원 댓글 수정 --}}
Edit
@endif
@endif
@if($comment->canReply() && $comment->status !== 'pending')
-
@if(!is_logged_in())
{{-- 비회원 답글 (이메일 인증 필요) --}}
Reply
Guest reply with email verification
@else
{{-- 일반 답글 --}}
Reply
@endif
@endif
@if($comment->canManage() && $comment->status === 'pending')
-
Approve
@endif
@if($comment->canDeleteComment())
-
@if(!is_logged_in() && $comment->email_verified_at)
{{-- 비회원 댓글 삭제 (이메일 인증 완료) --}}
Delete
Email/Password required
@elseif(is_logged_in())
{{-- 회원 댓글 삭제 --}}
Delete
@endif
@endif
@endif