@if($comment->commentator()['url'] == null) {{__("Guest")}} {{$comment->commentator()['name']}} @else @if($comment->commentator_type == \App\Models\User::class) {{__("Admin")}} @else {{__("Customer")}} @endif {{$comment->commentator()['name']}} @endif

{{$comment->body}}

@if($comment->children->count() > 0) @foreach($comment->children as $comment) @include('segments.post.SimplePost.inc.comment-detail',$comment) @endforeach @endif