Skip to content
Icon

WARNING You're browsing the documentation for an upcoming version of Laravel DataTables. The documentation and features of this release are subject to change.

Exclude Columns

Some columns you might not want in your SearchPanes, to hide them you can add ->searchPanes(false) in your column definition:

protected function getColumns() : array
{
return [
Column::make('id')
->searchPanes(false);
]
}