Toggleable and Filter Tab

I am trying to make the relation of column visibility and filter tab in filament table. I have staff tab in ListRecord like that
 'staff' => Tab::make(trans('tab.staff'))
                ->modifyQueryUsing(fn (Builder $query)
                => $query->whereNotNull('staffID'))
                ->icon('heroicon-m-identification'),

When user click this tab I want to the staff coloumn in filament table. How can I?
Was this page helpful?