I created routes as such
$router->post('qt','AnalyticsTracker@index');```
Controller:
```public function response()
{
return response('', 200);
}
And also a middleware on these routes to inject the headers.
I don't use axios but you can likely add content headers.
'options' are only sent via ajax/fetch if you don't add for example application/json or text/plain as custom content headers. I forgot the details on the headers but you should be able to find which content headers are needed to have a request with and without options request depending on your goals. I chose not to use options to minimize server requests. This specific app has over 20k a day