@php
$comments = $d->getComments()->orderByDesc("id")->get();
@endphp
@if(isset($comments))
COMMENTS
@foreach($comments as $comment)
@php
$comment_user = \App\Models\User::find(isset($comment->comment_by)? $comment->comment_by : "");
$comment_role = isset($comment_user) ? $comment_user->getRoleNames()[0] : "";
@endphp
@endforeach
@endif