#{{$comment->local_id}}
@if ($comment->createdBy)
{{ $comment->createdBy->name }}
@else
{{ trans('common.deleted_user') }}
@endif
{{ trans('entities.comment_created', ['createDiff' => $comment->created]) }}
@if($comment->isUpdated())
• {{ trans('entities.comment_updated', ['updateDiff' => $comment->updated, 'username' => $comment->updatedBy? $comment->updatedBy->name : trans('common.deleted_user')]) }}
@endif
@if(userCan('comment-update', $comment))
@icon('edit')
@endif @if(userCan('comment-create-all'))
@icon('reply')
@endif @if(userCan('comment-delete', $comment))
@icon('delete')
{{trans('entities.comment_delete_confirm')}}
@icon('delete'){{ trans('common.delete') }}
@endif
@if ($comment->parent_id)
{!! trans('entities.comment_in_reply_to', ['commentId' => '
#'.$comment->parent_id.'
']) !!}
@endif
@include('common.loading-icon', ['text' => trans('entities.comment_deleting')])
{!! $comment->html !!}
@if(userCan('comment-update', $comment))
{{ $comment->text }}
{{ trans('common.cancel') }}
{{ trans('entities.comment_save') }}
@include('common.loading-icon', ['text' => trans('entities.comment_saving')])
@endif