I am new with this Laravel Debugbar, I have installed Laravel Debugbar using composer and run the following publish command.
php artisan vendor:publish --provider="Barryvdh\Debugbar\ServiceProvider"
After this the debug bar starts to appear and also shows all the queries it runs. But in this queries list it is not including any queries which are from ajax request.
To capture ajax request, I have updated config/debugbar
'capture_ajax' => true,
'add_ajax_timing' => true,
But, it doesnot work.
I am returning response as:
return response()->json([
//arr_of_data
],200);