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