Skip to content

Latest commit

 

History

History
15 lines (11 loc) · 298 Bytes

blacklist.md

File metadata and controls

15 lines (11 loc) · 298 Bytes

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