
Hi iam using datatables with backend laravel and frontend angular.js. when i fetch data using querybuilder it shows whole sql query in my console like this.
return Datatables::queryBuilder((new IssuedBook())->getLibraryFeePayer(organizatoinId(), $inputs))
->editColumn('fine_amount', function($result) {
return twoDecimal($result->fine_amount);
})->make(true)
You need to disable APP_DEBUG=false to remove the queries on response. See docs for ref.
Awo! its worked. Thanks
Most helpful comment
You need to disable
APP_DEBUG=falseto remove the queries on response. See docs for ref.