Posts

Showing posts from July, 2019

Sweet Alert Warning & Updating record

Remove a member $('.remove-member').on("click", function(ev){     ev.preventDefault();     var URL = $(this).attr('href');     var redirectURL = "{{ url('/tele-sales/team/open/'.$team->id) }}";     warnBeforeRemoveMember(URL, redirectURL); }); Warn before remove member and redirect function warnBeforeRemoveMember(URL, redirectURL) {     swal({         title: 'Are you sure?',         text: "You won't be able to revert this!",         type: 'warning',         showCancelButton: true,         confirmButtonColor: '#3085d6',         cancelButtonColor: '#d33',         confirmButtonText: 'Yes, Remove',         cancelButtonText: 'No, Cancel!',         confirmButtonClass: 'btn btn-success',         cancelButtonClass: 'btn btn-danger',         buttonsStyling: true,         reverseButtons: true     }).then(function(isConfirm) {         if (isConfirm.v