$('.wish-list').click(function () { var product_id = $(this).data('product-id'); $.ajax({ url: "https://centaurusint.net/wishlist", type: "POST", data: {'products_id': product_id, '_token': "DVcMuqSm19op7ea0v2K0GD1e7A7HX9ZQ2Dt6JDBp"}, success: function (response) { console.log(response); toastr.options = { "closeButton": true, "progressBar": true } if (response.error) { toastr.error(response.error); } if (response.success) { toastr.success(response.success); } }, }); });