%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/lead/ajax/ |
Upload File : |
@php
$addLeadFollowUpPermission = user()->permission('add_lead_follow_up');
$viewLeadFollowUpPermission = user()->permission('view_lead_follow_up');
$editLeadFollowUpPermission = user()->permission('edit_lead_follow_up');
$deleteLeadFollowUpPermission = user()->permission('delete_lead_follow_up');
@endphp
<!-- ROW START -->
<div class="row">
<!-- USER CARDS START -->
<div class="col-lg-12 col-md-12 mb-4 mb-xl-0 mb-lg-4">
<div class="d-flex" id="table-actions">
@if (($addLeadFollowUpPermission == 'all' || $addLeadFollowUpPermission == 'added') && $lead->next_follow_up == 'yes')
<x-forms.button-primary icon="plus" id="add-lead-followup" class="mr-3">
@lang('modules.followup.newFollowUp')
</x-forms.button-primary>
@endif
</div>
@if ($viewLeadFollowUpPermission == 'all' || $viewLeadFollowUpPermission == 'added')
<div class="d-flex flex-column w-tables rounded mt-3 bg-white">
{!! $dataTable->table(['class' => 'table table-hover border-0 w-100']) !!}
</div>
@endif
</div>
<!-- USER CARDS END -->
</div>
<!-- ROW END -->
@include('sections.datatable_js')
<script>
$('#leadfollowup-table').on('preXhr.dt', function(e, settings, data) {
var leadId = "{{ $lead->id }}";
data['leadId'] = leadId;
});
const showTable = () => {
window.LaravelDataTables["leadfollowup-table"].draw(false);
}
$('body').on('click', '.delete-table-row-lead', function() {
var id = $(this).data('followup-id');
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('leads.follow_up_delete', ':id') }}";
url = url.replace(':id', id);
var token = "{{ csrf_token() }}";
$.easyAjax({
type: 'POST',
url: url,
data: {
'_token': token,
},
success: function(response) {
if (response.status == "success") {
showTable();
}
}
});
}
});
});
$('#add-lead-followup').click(function() {
const url = "{{ route('leads.follow_up', $leadId) }}";
$(MODAL_LG + ' ' + MODAL_HEADING).html('...');
$.ajaxModal(MODAL_LG, url);
})
$('body').on('click', '.edit-table-row-lead', function() {
var id = $(this).data('followup-id');
var url = "{{ route('leads.follow_up_edit', ':id') }}";
url = url.replace(':id', id);
$(MODAL_LG + ' ' + MODAL_HEADING).html('...');
$.ajaxModal(MODAL_LG, url);
});
$('body').on('change', '.status', function() {
var status = $(this).val();
var followUpId = $(this).data('followup-id');
console.log(followUpId);
var url = "{{ route('leads.change_follow_up_status') }}";
var token = "{{ csrf_token() }}";
$.easyAjax({
url:url,
type:'POST',
blockUI: true,
data: {
'_token': token,
id: followUpId,
status: status,
sortBy: 'id'
},
});
})
</script>