hiddenFrom on columns?

Is there something equivlent to
visableFrom
but for hideing based on breakpoint?

                Tables\Columns\TextColumn::make('notes')
                    ->hiddenFrom('lg')
                    ->searchable(),
                Tables\Columns\TextColumn::make('price')
                    ->hiddenFrom('lg')
                    ->searchable(),
                Tables\Columns\TextInputColumn::make('notes')
                    ->searchable()
                    ->visibleFrom('lg'),
                Tables\Columns\TextInputColumn::make('price')
                    ->visibleFrom('lg')
                    ->sortable(),
Was this page helpful?