© 2026 Hedgehog Software, LLC

TwitterGitHubDiscord
More
CommunitiesDocsAboutTermsPrivacy
Search
Star
Setup for Free
FilamentF
Filament•3y ago•
7 replies
ChesterS

toggleable() not working with Split?

I have the following table columns
Split::make([
    TextColumn::make('status')
        ->badge()
        ->grow(false)
        ->toggleable(isToggledHiddenByDefault: true)
        ->label(__('Status')),
    TextColumn::make('created_at')
        ->toggleable(isToggledHiddenByDefault: true)
        ->sortable()
        ->toggledHiddenByDefault(true) // I know it's useless, just here for the example
])->from('md'),
Split::make([
    TextColumn::make('status')
        ->badge()
        ->grow(false)
        ->toggleable(isToggledHiddenByDefault: true)
        ->label(__('Status')),
    TextColumn::make('created_at')
        ->toggleable(isToggledHiddenByDefault: true)
        ->sortable()
        ->toggledHiddenByDefault(true) // I know it's useless, just here for the example
])->from('md'),

However, the column is always visible. When I click on the on the checkbox to toggle its visibility, the only thing that changes is that the option disappears from the sorting dropdown.

If I remove the
Split::make()
Split::make()
part and only have the columns, it works as expected

Is
toggleable()
toggleable()
not compatible with
Split
Split
or am I doing something wrong?
Solution
see : https://github.com/filamentphp/filament/issues/7572#issuecomment-1670779665
GitHub
Column Toggleable() doesn't work with Table Split · Issue #7572 · f...
Package filament/filament Package Version v3 Laravel Version v10 Livewire Version v3 PHP Version 8.1 Problem description Here is a video of a classic table toggleable() in filamentphp: Enregistreme...
Column Toggleable() doesn't work with Table Split · Issue #7572 · f...
Jump to solution
Filament banner
FilamentJoin
A powerful open source UI framework for Laravel • Build and ship admin panels & apps fast with Livewire
20,307Members
Resources
Was this page helpful?

Similar Threads

Recent Announcements

Similar Threads

Toggleable columns not working with Split
FilamentFFilament / ❓┊help
3y ago
Toggleable with hidden
FilamentFFilament / ❓┊help
2y ago
Section->grow() not working inside Split layout
FilamentFFilament / ❓┊help
3y ago
Toggleable Position change
FilamentFFilament / ❓┊help
9mo ago