ok
Direktori : /home2/selectio/www/fms-worksuite/resources/views/awards/ajax/ |
Current File : //home2/selectio/www/fms-worksuite/resources/views/awards/ajax/show.blade.php |
@php $manageAppreciationTypePermission = user()->permission('manage_award'); @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">@lang('modules.appreciations.appreciationType') @lang('app.details')</h3> </div> <div class="col-lg-2 col-2 text-right"> @if ($manageAppreciationTypePermission == 'all') <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 ($manageAppreciationTypePermission == 'all') <a class="dropdown-item openRightModal" href="{{ route('awards.edit', $appreciationType->id) }}">@lang('app.edit')</a> <a class="dropdown-item delete-appreciatons">@lang('app.delete')</a> @endif </div> </div> @endif </div> </div> </div> <div class="card-body"> <x-cards.data-row :label="__('app.title')" :value="$appreciationType->title" /> <div class="col-12 px-0 pb-3 d-lg-flex d-md-flex d-block"> <p class="mb-0 text-lightest f-14 w-30 text-capitalize">@lang('modules.appreciations.icon')</p> <div class="mb-0 text-dark-grey f-14 w-70 text-wrap p-0"> <x-award-icon :award="$appreciationType" /> </div> </div> <x-cards.data-row :label="__('app.summary')" :value="!empty($appreciationType->summary) ? $appreciationType->summary : '--'" html="true" /> </div> </div> </div> </div> </div> <script> $('body').on('click', '.delete-appreciatons', 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('awards.destroy', $appreciationType->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>