Skip to content
Icon

WARNING You're browsing the documentation for an upcoming version of Laravel DataTables. The documentation and features of this release are subject to change.

Skip Total Records

Note: This is deprecated on v10. Just use setTotalRecords instead.

Skip total records aims to improve dataTables response time by skipping the total records count query and settings its value equals to the filtered total records.

Example

use DataTables;
 
Route::get('user-data', function() {
$model = App\User::query();
 
return DataTables::eloquent($model)
->skipTotalRecords()
->toJson();
});