//...
Forms\Components\Section::make('Options')
->schema([
Forms\Components\Toggle::make('receiveable')
->required(),
])
// Conditional Section for 'receivable'
Forms\Components\Section::make('Receivable Details')
->schema([
// Fields goes here...
])->hidden(fn ($get): bool => $get('receiveable') == false)
//...
Forms\Components\Section::make('Options')
->schema([
Forms\Components\Toggle::make('receiveable')
->required(),
])
// Conditional Section for 'receivable'
Forms\Components\Section::make('Receivable Details')
->schema([
// Fields goes here...
])->hidden(fn ($get): bool => $get('receiveable') == false)