nova-conditional-fields
nova-conditional-fields copied to clipboard
WIP: Conditionally display fields based on another field's value
I installed this with composer. In use: ``` use NovaConditionalFields\Condition; Select::make('Type de code', 'type') ->options([ 'personnal' => 'Code pour client unique', 'on_categories' => 'Réduction sur une ou plusieurs catégories', 'on_products'...
I originally had success using this package, but I am now getting the error Cannot read property 'status' of undefined If i remove the package everything is working. I haven't...
I made some resource on nova with conditional field ``` .... public function fields(Request $request) { return [ Condition::make('Show Fields') ->fieldsWhen(true, [ Text::make('Title', 'title') ->sortable() ->rules('required', 'max:255'), ]), ] ......
Hi. I've noticed it doesn't work well with Nova Panels. Maybe this could be a feature for future releases? This is a great Nova package, thanks for sharing it. :-)
Readme says to use when however this does not work, fieldsWhen works instead