@if(isset($checklist->comments) && $checklist->comments->count() > 0) @foreach($checklist->comments as $comment)
{{ $comment->creator->first_name ?? runtimeUnkownUser() }}
{{ $comment->creator->first_name ?? runtimeUnkownUser() }} {{ $comment->creator->last_name ?? '' }}
{{ runtimeDate($comment->comment_created) }} @if(auth()->user()->is_admin || $comment->comment_creatorid == auth()->id()) @lang('lang.delete') @endif
{!! clean($comment->comment_text) !!}
@endforeach @endif