1$(document).ready(function() {
2
3 //SweetAlert2 Toast
4 const Toast = Swal.mixin({
5 toast: true,
6 position: 'top-end',
7 showConfirmButton: false,
8 timer: 1000
9 });
10
11 });
12
13Toast.fire({
14 type: 'success',
15 title: 'Data updated.'
16});
1$(document).ready(function() {
2
3 //SweetAlert2 Toast
4 const Toast = Swal.mixin({
5 toast: true,
6 position: 'top-end',
7 showConfirmButton: false,
8 timer: 1000
9 });
10
11 });
12
13Toast.fire({
14 type: 'success',
15 title: 'Data updated.'
16});
17
18