%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/sticky-notes/ajax/ |
Upload File : |
@switch($stickyNotes->colour)
@case('green')
@php
$colour = 'dark-green';
@endphp
@break
@case('purple')
@php
$colour = 'dark-grey';
@endphp
@break
@default
@php
$colour = $stickyNotes->colour;
@endphp
@endswitch
<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-10">
<h3 class="heading-h1 mb-3">@lang('app.note') @lang('app.details')</h3>
</div>
<div class="col-2 text-right">
<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">
<a class="dropdown-item openRightModal"
href="{{ route('sticky-notes.edit', $stickyNotes->id) }}">@lang('app.edit')</a>
<a class="dropdown-item delete-snote"
data-note-id="{{ $stickyNotes->id }}">@lang('app.delete')</a>
</div>
</div>
</div>
</div>
</div>
<div class="card-body">
<x-cards.data-row :label="__('modules.sticky.colors')"
value="<i class='fa fa-square f-21 mr-2 text-{{ $colour }}'></i>" html="true" />
<x-cards.data-row :label="__('app.note')" :value="$stickyNotes->note_text" html="true" />
</div>
</div>
</div>
</div>
</div>
<script>
$('body').on('click', '.delete-snote', 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('sticky-notes.destroy', $stickyNotes->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>