WARNING You're browsing the documentation for an old version of LARAVEL-DATATABLES. Consider upgrading your project to laravel-datatables 11.0.
Set Total Records
In some cases, we need to manually set the total records of our Datatables
and skip its internal counting functionality.
To achieve this, we can use setTotalRecords($count)
api.
use Datatables; Route::get('user-data', function() { $model = App\User::query(); return Datatables::eloquent($model) ->setTotalRecords(100) ->make(true);});