![]()
WARNING You're browsing the documentation for an old version of LARAVEL-DATATABLES. Consider upgrading your project to laravel-datatables 12.0.
Remove Column
You can remove a column on your response by using removeColumn api.
use Datatables; Route::get('user-data', function() {    $model = App\User::query();     return Datatables::eloquent($model)                ->removeColumn('password')                ->make(true);});