I have a select Component, which has a createOptionForm, I want to pass the value of neighbouring component inside the createOptionForm so I can apply some rules on it
Select::make('a_id')Select::make('b_id')... ->createOptionForm([ Select::('c_id') ->rules() // need the value of a_id here])
Select::make('a_id')Select::make('b_id')... ->createOptionForm([ Select::('c_id') ->rules() // need the value of a_id here])