{{-- @include('livewire.comment.inc.loading-section') --}} @if ($parentComment)
Reply to {{ '@' . ($parentComment->sender->full_name ?? ($parentComment->sender->name ?? '')) }} close
@endif @if ($CanAddComment)
{{--
--}}
@if ($isDraft && isAgency(getUser())) @if ($draft->getFeedbacks) @foreach ($draft->getFeedbacks as $feedback) @if ($feedback->rating == 5)
...

Excellent

@endif @if ($feedback->rating == 3)
...

Average

@endif @if ($feedback->rating == 1)
...

Poor

@endif @endforeach @endif @endif @if (!empty($comment_media)) @endif @if (!empty($all_mentions))
@foreach ($all_mentions as $key => $mention)
@endforeach
@endif @endif
@foreach ($comments as $key => $comment) @if ($comment->sender && $comment->sender->is($currentUser))
@if ($comment->is_attachment)
@include('livewire.comment.inc.file-preview', ['comment_media' => $comment])
@endif
{{ $comment->sender->full_name ?? ($comment->sender->name ?? '') }} @if ($comment->position) {{ $dotCommentCount-- }} @endif
{!! $comment->decoded_message ?? '' !!}
@if ($comment->is_attachment) download @endif delete reply
{{ $comment->created_at->diffForHumans() ?? '' }}
@foreach ($comment->getReplies as $key1 => $reply)
@if ($reply->is_attachment)
@include('livewire.comment.inc.file-preview', ['comment_media' => $reply])
@endif
{!! $reply->decoded_message ?? '' !!}
@if ($reply->is_attachment) download @endif delete
{{ $reply->created_at->diffForHumans() ?? '' }}
@endforeach
@else
{{ $comment->sender->full_name ?? ($comment->sender->name ?? '') }} @if ($comment->position) {{ $dotCommentCount-- }} @endif
{!! $comment->decoded_message ?? '' !!} @if ($comment->is_attachment)
@include('livewire.comment.inc.file-preview', ['comment_media' => $comment])
@endif
@if ($comment->is_assigned) @if ($comment->is_assigned->is_completed) verified @else work @endif @endif @if ($comment->is_attachment) download @endif reply
{{ $comment->created_at->diffForHumans() ?? '' }}
@foreach ($comment->getReplies as $key1 => $reply)
@if ($reply->is_attachment)
@include('livewire.comment.inc.file-preview', ['comment_media' => $reply])
@endif
{!! $reply->decoded_message ?? '' !!}
@if ($reply->is_attachment) download @endif delete
{{ $reply->created_at->diffForHumans() ?? '' }}
@endforeach
@endif @endforeach @if( $showTeamWorkingMessage )
@if($projectType == 2) The Writer is currently working on your project. Send messages here to share updates about the overall project. If you want to share comments about an individual draft you can use the comments section within each content draft. @else The designer is currently working on your project. Send messages here to share updates about the overall project. If you want to share comments about an individual design you can use the comments section within each design draft. @endif
@endif
@push('liveScript') {{-- --}} @endpush