Skip to content

Latest commit

 

History

History
14 lines (12 loc) · 294 Bytes

search-panes-hide-columns.md

File metadata and controls

14 lines (12 loc) · 294 Bytes

Hide Columns in SearchPanes

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