
WARNING You're browsing the documentation for an old version of LARAVEL-DATATABLES. Consider upgrading your project to laravel-datatables 12.0.
Black listing columns
Sorting and searching will not work on columns explicitly defined as blacklisted.
use DataTables; Route::get('user-data', function() {    $model = App\User::query();     return DataTables::eloquent($model)                ->blacklist(['password', 'name'])                ->toJson();});