Forms\Components\Section::make()
->schema([
Forms\Components\Select::make('other')
->options(function (callable $get) {
Log::info($get('type'));
return [$get('type')];
})
->reactive(),
Forms\Components\Select::make('type')
->options(['Option1' => 'Option1'])
->reactive()
->required(),
Forms\Components\Section::make()
->schema([
Forms\Components\Select::make('other')
->options(function (callable $get) {
Log::info($get('type'));
return [$get('type')];
})
->reactive(),
Forms\Components\Select::make('type')
->options(['Option1' => 'Option1'])
->reactive()
->required(),