Forms\Components\Group::make()
->relationship(
'childFamilyIncome',
condition: fn (?array $state): bool => filled($state['family_income_id']),
)
->schema([
...
])Forms\Components\Repeater::make('childEthnicities')
->relationship('childEthnicities',
condition: fn (?array $state): bool => filled($state['ethnicity_id']))
->label('Child Ethnicities')
->simple(
...
)
->defaultItems(1)