mirror of https://github.com/4xmen/xshop.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
1.3 KiB
PHTML
37 lines
1.3 KiB
PHTML
<div class="simple-single-comment">
|
|
<div class="row">
|
|
<div class="col-3">
|
|
@if($comment->commentator()['url'] == null)
|
|
<span class="tag float-end">
|
|
{{__("Guest")}}
|
|
</span>
|
|
{{$comment->commentator()['name']}}
|
|
@else
|
|
@if($comment->commentator_type == \App\Models\User::class)
|
|
<span class="tag float-end">
|
|
{{__("Admin")}}
|
|
</span>
|
|
@else
|
|
<span class="tag float-end">
|
|
{{__("Customer")}}
|
|
</span>
|
|
@endif
|
|
{{$comment->commentator()['name']}}
|
|
@endif
|
|
</div>
|
|
<div class="col-9">
|
|
<button type="button" class="btn btn-primary btn-sm float-end comment-reply" data-id="{{$comment->id}}">
|
|
<i class="ri-reply-line"></i>
|
|
</button>
|
|
<p class="pe-4">
|
|
{{$comment->body}}
|
|
</p>
|
|
</div>
|
|
</div>
|
|
@if($comment->children->count() > 0)
|
|
@foreach($comment->children as $comment)
|
|
@include('segments.post.SimplePost.inc.comment-detail',$comment)
|
|
@endforeach
|
|
@endif
|
|
</div>
|