© 2026 Hedgehog Software, LLC
Radio::make('moveOrMerge') ->options([ 'move' => 'Move', 'merge' => 'Merge', ]) ->required(), Select::make('merge_target') ->options(function () use ($table) { if (isset($this->target_tenant_options)) { return $this->target_tenant_options[$table] ?? []; } return []; }) ->required(function (Get $get) { if ($get('moveOrMerge') === 'merge') { return true; } return false; }),
Typed property Filament\Forms\Components\Component::$container must not be accessed before initialization