Issue with AJAX Request Triggering Unrelated Method in PHP
I am trying to update the like/upvote button. For that I have created a menthod[Method named: likepost()] in my Controller named Posts. Here is the code for my method. public function likepost() { if (IsloggedIn()) { // Check if the…