We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Injects toolbar even if request has any of the headers: Content-Type: application/json Accept: application/json
Via postman you have to add this header: X-Requested-With: XMLHttpRequest
But sometimes it doesn't exist even if request is async. :-)
The text was updated successfully, but these errors were encountered:
It should not add it with application/json content-type. Can you show your full response headers?
Sorry, something went wrong.
I am seeing the same problem after installing.
Returning data from a route request using the following is injecting the toolbar:
// filename: web.php Route::get('/api/test', function () { $data = DB::connection('testdb')->table('testtable')->get(); return $data->toJson(); });
No branches or pull requests
Injects toolbar even if request has any of the headers:
Content-Type: application/json
Accept: application/json
Via postman you have to add this header:
X-Requested-With: XMLHttpRequest
But sometimes it doesn't exist even if request is async. :-)
The text was updated successfully, but these errors were encountered: