Skip to content

Instantly share code, notes, and snippets.

@jlcarrascof
Created January 24, 2025 22:43
Show Gist options
  • Save jlcarrascof/66dcaed8deaaec0e83e14643dbb154c2 to your computer and use it in GitHub Desktop.
Save jlcarrascof/66dcaed8deaaec0e83e14643dbb154c2 to your computer and use it in GitHub Desktop.
Laravel 11 - Invoicing - Video 16 - SweetAlert code
<script>
function confirmDelete(categoryId) {
Swal.fire({
title: '¿Are you sure to delete?',
text: "¡Confirm delete, please!",
icon: 'warning',
showCancelButton: true,
confirmButtonColor: '#3085d6',
cancelButtonColor: '#d33',
confirmButtonText: 'Yes',
cancelButtonText: 'Cancel'
}).then((result) => {
if (result.isConfirmed) {
// Send the deletion form
document.getElementById(`delete-form-${categoryId}`).submit();
}
});
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment