Typed property Filament\Forms\Components\Component::$container must not be accessed

Hi, i'm trying to hide a column with a Closure filter to hide it when it is null.
Code is the following
Tables\Columns\TextColumn::make('fax')
                    ->searchable()
                    ->hidden(fn(\Filament\Forms\Get $get) => $get("fax") === null),
Was this page helpful?