%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/notices/ajax/ |
Upload File : |
@php
$editPermission = user()->permission('edit_notice');
$deletePermission = user()->permission('delete_notice');
@endphp
<div id="notice-detail-section">
<div class="row">
<div class="col-sm-12">
<div class="card bg-white border-0 b-shadow-4">
<div class="card-header bg-white border-bottom-grey text-capitalize justify-content-between p-20">
<div class="row">
<div class="col-lg-10 col-10">
<h3 class="heading-h1 mb-3">@lang('modules.notices.notice') @lang('app.details')</h3>
</div>
<div class="col-lg-2 col-2 text-right">
@if (!in_array('client', user_roles()) && (($editPermission == 'all' || ($editPermission == 'added' && $notice->added_by == user()->id) || ($editPermission == 'owned' && in_array($notice->to, user_roles())) || ($editPermission == 'both' && (in_array($notice->to, user_roles()) || $notice->added_by == user()->id))) || ($deletePermission == 'all' || ($deletePermission == 'added' && $notice->added_by == user()->id) || ($deletePermission == 'owned' && in_array($notice->to, user_roles())) || ($deletePermission == 'both' && (in_array($notice->to, user_roles()) || $notice->added_by == user()->id)))))
<div class="dropdown">
<button
class="btn btn-lg f-14 px-2 py-1 text-dark-grey 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 ($editPermission == 'all' || ($editPermission == 'added' && $notice->added_by == user()->id) || ($editPermission == 'owned' && in_array($notice->to, user_roles())) || ($editPermission == 'both' && (in_array($notice->to, user_roles()) || $notice->added_by == user()->id)))
<a class="dropdown-item openRightModal"
href="{{ route('notices.edit', $notice->id) }}">@lang('app.edit')</a>
@endif
@if ($deletePermission == 'all' || ($deletePermission == 'added' && $notice->added_by == user()->id) || ($deletePermission == 'owned' && in_array($notice->to, user_roles())) || ($deletePermission == 'both' && (in_array($notice->to, user_roles()) || $notice->added_by == user()->id)))
<a class="dropdown-item delete-notice">@lang('app.delete')</a>
@endif
</div>
</div>
@endif
</div>
</div>
</div>
<div class="card-body">
<x-cards.data-row :label="__('modules.notices.noticeHeading')" :value="$notice->heading" />
<x-cards.data-row :label="__('app.date')"
:value="$notice->created_at->translatedFormat(company()->date_format)" />
<x-cards.data-row :label="__('app.to')" :value="__('app.'.$notice->to)" />
<x-cards.data-row :label="__('app.description')" :value="!empty($notice->description) ? $notice->description : '--'" html="true" />
@if (!is_null($notice->attachment))
<x-cards.data-row :label="__('app.viewAttachment')"
value='<a target="_blank" href="{{ $notice->file_url }}" title="@lang('app.viewAttachment')">
<span class="btn btn-sm btn-info"> @lang('app.viewAttachment') </span>
</a>'/>
@endif
@if (in_array('admin', user_roles()))
<div class="col-12 px-0 pb-3 d-flex">
<p class="mb-0 text-lightest f-14 w-30 d-inline-block text-capitalize">
@lang('app.readBy')</p>
<p class="mb-0 text-dark-grey f-14">
@if (count($readMembers) > 0)
@foreach ($readMembers as $item)
@if($notice->to == 'employee')
<x-employee-image :user="$item->user" />
@else
<x-client-image :user="$item->user" />
@endif
@endforeach
@else
--
@endif
</p>
</div>
@endif
</div>
</div>
</div>
</div>
</div>
<script>
$('body').on('click', '.delete-notice', function() {
Swal.fire({
title: "@lang('messages.sweetAlertTitle')",
text: "@lang('messages.recoverRecord')",
icon: 'warning',
showCancelButton: true,
focusConfirm: false,
confirmButtonText: "@lang('messages.confirmDelete')",
cancelButtonText: "@lang('app.cancel')",
customClass: {
confirmButton: 'btn btn-primary mr-3',
cancelButton: 'btn btn-secondary'
},
showClass: {
popup: 'swal2-noanimation',
backdrop: 'swal2-noanimation'
},
buttonsStyling: false
}).then((result) => {
if (result.isConfirmed) {
var url = "{{ route('notices.destroy', $notice->id) }}";
var token = "{{ csrf_token() }}";
$.easyAjax({
type: 'POST',
url: url,
data: {
'_token': token,
'_method': 'DELETE'
},
success: function(response) {
if (response.status == "success") {
window.location.href = response.redirectUrl;
}
}
});
}
});
});
</script>