chasie / nova-depend-fill
Fill Laravel Nova field based on value from other field.
v1.0
2019-08-06 12:11 UTC
Requires
- php: >=7.1.0
- laravel/framework: 5.8.*
- laravel/nova: ~2.0
This package is auto-updated.
Last update: 2025-03-29 01:00:29 UTC
README
composer require chasie/nova-depend-fill
Description
Fill Laravel Nova field based on value from other field.
Usage
DependFill::make('Text') ->field( Textarea::make('Text') ) ->dependsOn( Select::make('Template') ->options([ 1 => 'Template 1', 2 => 'Template 2', ]) ) ->values([ 1 => 'template 1 text', 2 => 'template 2 text' ])