v1.0.1
- Support depending on a deeply nested value within another conditional container! now you are able to do this:
Text::make('A'),
ConditionalContainer::make([
Text::make('B'),
])->if('A = 1'),
ConditionalContainer::make([
Text::make('C'),
])->if('B = 1'),
Field C
only shows if the field B is = 1
, but field B
only shows if the field A = 1