A Laravel Nova 4 and 5 field container allowing to depend on other fields values
iamgerwin/nova-dependency-container is a Laravel package for a laravel nova 4 and 5 field container allowing to depend on other fields values.
It currently has 0 GitHub stars and 1.603 downloads on Packagist (latest version 1.0.16).
Install it with composer require iamgerwin/nova-dependency-container.
Discover more Laravel packages by iamgerwin
or browse all Laravel packages to compare alternatives.
Last updated
A Laravel Nova field container allowing fields to depend on other field values. Show and hide fields dynamically based on other fields' values with support for complex conditional logic.

You can install the package via composer:
composer require iamgerwin/nova-dependency-container
use Iamgerwin\NovaDependencyContainer\NovaDependencyContainer;
use Laravel\Nova\Fields\Select;
use Laravel\Nova\Fields\Text;
use Laravel\Nova\Fields\Textarea;
public function fields(NovaRequest $request)
{
return [
Select::make('Type')
->options([
'personal' => 'Personal',
'business' => 'Business',
]),
NovaDependencyContainer::make([
Text::make('Company Name'),
Text::make('Tax ID'),
])->dependsOn('type', 'business'),
NovaDependencyContainer::make([
Text::make('Personal ID'),
Text::make('Date of Birth'),
])->dependsOn('type', 'personal'),
];
}
dependsOn(string $field, $value)Show container when field equals specific value:
NovaDependencyContainer::make([
Text::make('Company Name'),
])->dependsOn('type', 'business')
dependsOnIn(string $field, array $values)Show container when field value is in array:
NovaDependencyContainer::make([
Text::make('Priority Note'),
])->dependsOnIn('status', ['urgent', 'high'])
dependsOnNot(string $field, $value)Show container when field does NOT equal value:
NovaDependencyContainer::make([
Text::make('Cancellation Reason'),
])->dependsOnNot('status', 'active')
dependsOnNotIn(string $field, array $values)Show container when field value is NOT in array:
NovaDependencyContainer::make([
Text::make('Additional Info'),
])->dependsOnNotIn('status', ['completed', 'cancelled'])
dependsOnEmpty(string $field)Show container when field is empty:
NovaDependencyContainer::make([
Text::make('Default Value'),
])->dependsOnEmpty('custom_value')
dependsOnNotEmpty(string $field)Show container when field is NOT empty:
NovaDependencyContainer::make([
Textarea::make('Description'),
])->dependsOnNotEmpty('title')
dependsOnNullOrZero(string $field)Show container when field is null or zero:
NovaDependencyContainer::make([
Text::make('Free tier features'),
])->dependsOnNullOrZero('subscription_plan')
You can chain multiple dependencies together. ALL conditions must be met:
NovaDependencyContainer::make([
Text::make('Premium Features'),
Text::make('Custom Domain'),
])->dependsOn('plan', 'premium')
->dependsOnNotEmpty('company_name')
->dependsOnNot('status', 'suspended')
You can pass a closure to dynamically generate fields:
NovaDependencyContainer::make(function () {
return [
Text::make('Dynamic Field 1'),
Text::make('Dynamic Field 2'),
];
})->dependsOn('type', 'dynamic')
Use applyToFields() to apply dependencies without the container wrapper:
NovaDependencyContainer::make([
Text::make('Field 1'),
Text::make('Field 2'),
])->dependsOn('type', 'special')
->applyToFields()
You can also add dependencies directly to regular Nova fields using the HasDependencies trait:
use Iamgerwin\NovaDependencyContainer\HasDependencies;
use Laravel\Nova\Fields\Text;
class CustomTextField extends Text
{
use HasDependencies;
}
// In your Nova resource:
CustomTextField::make('Special Field')
->dependsOn('type', 'custom')
NovaDependencyContainer works seamlessly with whitecube/nova-flexible-content Flexible fields:
use Iamgerwin\NovaDependencyContainer\NovaDependencyContainer;
use Whitecube\NovaFlexibleContent\Flexible;
use Laravel\Nova\Fields\Select;
use Laravel\Nova\Fields\Text;
Flexible::make('Overlay Items')
->addLayout('Overlay Item', 'overlay_item', [
Select::make('Type')
->options([
'Default' => 'Default',
'Location' => 'Location',
'Contact Us' => 'Contact Us',
]),
NovaDependencyContainer::make([
Text::make('Recipient Email', 'recipient_email')
->rules('nullable', 'email', 'max:255'),
])->dependsOn('type', 'Contact Us'),
NovaDependencyContainer::make([
Text::make('Location Name', 'location_name'),
Text::make('Address', 'address'),
])->dependsOn('type', 'Location'),
]),
The package automatically detects the Flexible field context and resolves field attributes correctly, even with dynamically prefixed attribute names.
For more details, see the Flexible Field Support documentation.
public function fields(NovaRequest $request)
{
return [
Select::make('Step')
->options([
'1' => 'Basic Info',
'2' => 'Address',
'3' => 'Confirmation',
]),
NovaDependencyContainer::make([
Text::make('First Name')->required(),
Text::make('Last Name')->required(),
Text::make('Email')->required(),
])->dependsOn('step', '1'),
NovaDependencyContainer::make([
Text::make('Street Address')->required(),
Text::make('City')->required(),
Text::make('Zip Code')->required(),
])->dependsOn('step', '2'),
NovaDependencyContainer::make([
Boolean::make('Confirm Details'),
Textarea::make('Additional Notes'),
])->dependsOn('step', '3'),
];
}
public function fields(NovaRequest $request)
{
return [
Select::make('Payment Method')
->options([
'credit_card' => 'Credit Card',
'bank_transfer' => 'Bank Transfer',
'paypal' => 'PayPal',
]),
NovaDependencyContainer::make([
Text::make('Card Number')
->required()
->rules('required', 'credit_card'),
Text::make('CVV')
->required()
->rules('required', 'digits:3'),
])->dependsOn('payment_method', 'credit_card'),
NovaDependencyContainer::make([
Text::make('Bank Account')
->required(),
Text::make('Routing Number')
->required(),
])->dependsOn('payment_method', 'bank_transfer'),
NovaDependencyContainer::make([
Text::make('PayPal Email')
->required()
->rules('required', 'email'),
])->dependsOn('payment_method', 'paypal'),
];
}
Run the test suite:
composer test
Run tests with coverage:
composer test-coverage
Format code with Laravel Pint:
composer format
Run static analysis with PHPStan:
composer analyse
Please see CHANGELOG for more information on what has changed recently.
Please see CONTRIBUTING for details.
Please review our security policy on how to report security vulnerabilities.
This package is inspired by alexwenzel/nova-dependency-container.
The MIT License (MIT). Please see License File for more information.