%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/components/cards/ |
Upload File : |
<div class="card ticket-message rounded-0 border-0 @if (user()->id == $user->id) bg-white-shade @endif" id="message-{{ $message->id }}">
<div class="card-horizontal">
<div class="card-img">
<a
href="{{ !is_null($user->employeeDetail) ? route('employees.show', $user->id) : route('clients.show', $user->id) }}"><img
class="" src="{{ $user->image_url }}" alt="{{ $user->name }}"></a>
</div>
<div class="card-body border-0 pl-0">
<div class="d-flex">
<a href="{{ !is_null($user->employeeDetail) ? route('employees.show', $user->id) : route('clients.show', $user->id) }}">
<h4 class="card-title f-13 f-w-500 text-dark mr-3">{{ $user->name }}</h4>
</a>
<p class="card-date f-11 text-lightest mb-0">
{{ $message->created_at->timezone(company()->timezone)->translatedFormat(company()->date_format . ' ' . company()->time_format) }}
</p>
@if ($user->id == user()->id || in_array('admin', user_roles()))
<div class="dropdown ml-auto message-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">
<a class="dropdown-item delete-message"
data-row-id="{{ $message->id }}" data-user-id="{{ $user->id }}" href="javascript:;">@lang('app.delete')</a>
</div>
</div>
@endif
</div>
@if ($message->message != '')
<div class="card-text text-dark-grey text-justify mb-2">
<span class="ql-editor f-13 px-0">{!! nl2br($message->message) !!}</span>
</div>
@endif
{{ $slot }}
<div class="d-flex flex-wrap">
@foreach ($message->files as $file)
<x-file-card :fileName="$file->filename"
:dateAdded="$file->created_at->diffForHumans()">
@if ($file->icon == 'images')
<img src="{{ $file->file_url }}">
@else
<i class="fa {{ $file->icon }} text-lightest"></i>
@endif
<x-slot name="action">
<div class="dropdown ml-auto file-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">
<a class="dropdown-item"
target="_blank"
href="{{ $file->file_url }}">@lang('app.view')</a>
<a class="dropdown-item"
href="{{ route('ticket-files.download', md5($file->id)) }}">@lang('app.download')</a>
@if (user()->id == $user->id)
<a class="dropdown-item delete-file"
data-row-id="{{ $file->id }}"
href="javascript:;">@lang('app.delete')</a>
@endif
</div>
</div>
</x-slot>
</x-file-card>
@endforeach
</div>
</div>
</div>
</div><!-- card end -->