আমি অজ্যাক্সের মাধ্যমে ডেটাবেস থেকে ডেটা মুছতে চেষ্টা করছি।
এইচটিএমএল:
@foreach($a as $lis)
//some code
<a href="#" class="delteadd" id="{{$lis['id']}}">Delete</a>
//click action perform on this link
@endforeach
আমার এজাক্স কোড:
$('body').on('click', '.delteadd', function (e) {
e.preventDefault();
//alert('am i here');
if (confirm('Are you sure you want to Delete Ad ?')) {
var id = $(this).attr('id');
$.ajax({
method: "POST",
url: "{{url()}}/delteadd",
}).done(function( msg ) {
if(msg.error == 0){
//$('.sucess-status-update').html(msg.message);
alert(msg.message);
}else{
alert(msg.message);
//$('.error-favourite-message').html(msg.message);
}
});
} else {
return false;
}
});
এটি ডাটাবেস থেকে ডেটা আনার জন্য আমার জিজ্ঞাসা ...
$a = Test::with('hitsCount')->where('userid', $id)->get()->toArray();
তবে আমি যখন মুছে ফেলা লিঙ্ক ডেটা মুছে ফেলাতে ক্লিক করি না এবং সিএসআরএফ_ টোকেন অমিল দেখায় ...