We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cb6209c commit 51c590dCopy full SHA for 51c590d
README.md
@@ -105,6 +105,9 @@ class Post extends Resource
105
[ 'attribute' => 'subtitle', 'isNull' => true ],
106
[ 'attribute' => 'title', 'includes' => 'My' ],
107
[ 'attribute' => 'number_of_comments_allowed', 'moreThanOrEqual' => 1 ],
108
+
109
+ // Integration for nova booleanGroup field
110
+ [ 'attribute' => 'my_multiple_checkbox', 'booleanGroup' => 'the_checkbox_key_to_target' ],
111
];
112
})
113
@@ -122,6 +125,8 @@ The package will then add those conditions and dynamically update your form as y
122
125
- [x] isMoreThanOrEqual
123
126
- [x] isLessThan
124
127
- [x] isLessThanOrEqual
128
+- [x] includes
129
+- [x] booleanGroup
130
131
# Add a minimum or a maximum number of children
132
0 commit comments