I am building an application in Laravel with loads of AJAX calls. I have protected the POST, UPDATE calls with CSRF token in AJAX headers.
My question is is there a way to protect the GET ajax calls from cross-site access. For example I dont want users to type in the ajax call route and get a response, instead i want them redirected to 404 page.
Thanks