The Laravel's documentation clearly states the use of CSRF Token in the Ajax Request.
$.ajaxSetup({
headers: {
'X-CSRF-TOKEN': $('meta[name="csrf-token"]').attr('content')
}
});
Please do note that you will have to update the token with each request if you are regenerating the tokens.