Skip Total Records
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();});