8 lines
395 B
PHP
8 lines
395 B
PHP
|
<li class="photo-comment" data-comment-id="{{ $comment->id }}">
|
||
|
Comment by <b>{{ $comment->createdBy->name }}</b>:<br/>
|
||
|
{{ $comment->comment_text }}
|
||
|
|
||
|
@if ($comment->depth() < UserConfig::get('photo_comments_thread_depth'))
|
||
|
<p><button v-on:click="replyToComment" class="btn btn-sm btn-outline-primary">@lang('gallery.photo_comments_reply_action')</button></p>
|
||
|
@endif
|
||
|
</li>
|