Disabled tab

Hello,

I've noticed that the Tab component has a disabled property, and I attempted to chain the ->disabled() method to it. However, I encountered an issue where the tab remains navigable despite setting it as disabled.

use Filament\Forms\Components\Tabs\Tab;

Tab::make('Tab')
     ->disabled()
     ->schema([]),
Was this page helpful?