${value.course.label}
${value.course.discount_price == null
? `
$${value.course.selling_price}
`
: `
$${value.course.discount_price} $${value.course.selling_price}
`
}
`
});
$('#wishlist').html(rows);
}
})
}
wishlist();
/// WishList Remove Start //
function wishlistRemove(id) {
$.ajax({
type: "GET",
dataType: 'json',
url: "/wishlist-remove/" + id,
success: function (data) {
wishlist();
// Start Message
const Toast = Swal.mixin({
toast: true,
position: 'top-end',
showConfirmButton: false,
timer: 6000
})
if ($.isEmptyObject(data.error)) {
Toast.fire({
type: 'success',
icon: 'success',
title: data.success,
})
} else {
Toast.fire({
type: 'error',
icon: 'error',
title: data.error,
})
}
// End Message
}
})
}
/// End WishList Remove //
-->