%PDF- %GIF98; %PNG;
Server : ApacheSystem : Linux host.digitalbabaji.in 4.18.0-513.11.1.el8_9.x86_64 #1 SMP Wed Jan 17 02:00:40 EST 2024 x86_64 User : addictionfreeind ( 1003) PHP Version : 7.2.34 Disable Function : exec,passthru,shell_exec,system Directory : /home/addictionfreeind/www/admin1/resources/views/front/tasks/comments/ |
Upload File : |
@php
$editTaskCommentPermission = user()->permission('edit_task_comments');
$deleteTaskCommentPermission = user()->permission('delete_task_comments');
@endphp
@forelse ($comments as $comment)
<div class="card w-100 rounded-0 border-0 comment">
<div class="card-horizontal">
<div class="card-img my-1 ml-0">
<img src="{{ $comment->user->image_url }}" alt="{{ $comment->user->name }}">
</div>
<div class="card-body border-0 pl-0 py-1">
<div class="d-flex flex-grow-1">
<h4 class="card-title f-15 f-w-500 text-dark mr-3">{{ $comment->user->name }}</h4>
<p class="card-date f-11 text-lightest mb-0">
{{ $comment->created_at->timezone($company->timezone)->translatedFormat($company->date_format . ' ' . $company->time_format) }}
</p>
<div class="dropdown ml-auto comment-action">
<button class="btn btn-lg f-14 p-0 text-lightest text-capitalize rounded dropdown-toggle"
type="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
<i class="fa fa-ellipsis-h"></i>
</button>
<div class="dropdown-menu dropdown-menu-right border-grey rounded b-shadow-4 p-0"
aria-labelledby="dropdownMenuLink" tabindex="0">
@if ($editTaskCommentPermission == 'all' || ($editTaskCommentPermission == 'added' && $comment->added_by == user()->id))
<a class="cursor-pointer d-block text-dark-grey f-13 py-3 px-3 edit-comment"
href="javascript:;" data-row-id="{{ $comment->id }}">@lang('app.edit')</a>
@endif
@if ($deleteTaskCommentPermission == 'all' || ($deleteTaskCommentPermission == 'added' && $comment->added_by == user()->id))
<a class="cursor-pointer d-block text-dark-grey f-13 pb-3 px-3 delete-comment"
data-row-id="{{ $comment->id }}" href="javascript:;">@lang('app.delete')</a>
@endif
</div>
</div>
</div>
<div class="card-text f-14 text-dark-grey text-justify ql-editor">{!! $comment->comment !!}
</div>
</div>
</div>
</div>
@empty
<div class="align-items-center d-flex flex-column text-lightest p-20 w-100">
<i class="fa fa-comment-alt f-21 w-100"></i>
<div class="f-15 mt-4">
- @lang('messages.noCommentFound') -
</div>
</div>
@endforelse