2 | @if($isEditing)
3 | @include('commentify::livewire.partials.comment-form',[
4 | 'method'=>'editComment',
5 | 'state'=>'editState',
6 | 'inputId'=> 'reply-comment',
7 | 'inputLabel'=> __('commentify::commentify.comments.your_reply'),
8 | 'button'=> __('commentify::commentify.comments.edit_comment')
9 | ])
10 | @else
11 |
12 |
52 |
53 | {!! $comment->presenter()->replaceUserMentions($comment->presenter()->markdownBody()) !!}
54 |
55 |
56 |
57 | @include('commentify::livewire.partials.comment-reply')
58 |
59 |
60 | @endif
61 | @if($isReplying)
62 | @include('commentify::livewire.partials.comment-form',[
63 | 'method'=>'postReply',
64 | 'state'=>'replyState',
65 | 'inputId'=> 'reply-comment',
66 | 'inputLabel'=> __('commentify::commentify.comments.your_reply'),
67 | 'button'=> __('commentify::commentify.comments.post_reply')
68 | ])
69 | @endif
70 | @if($hasReplies)
71 |