laravel-nova-nested-form
laravel-nova-nested-form copied to clipboard
This package allows you to include your nested relationships' forms into a parent form.
Hello ! I would like to change the language of Laravel Nova nested form, to use my own translation. Like changing "No related x yet" or things like that. What's...
If a field from the nested form has a help text (e.g. `Text::make('name')->help('Fullname')`), it's not displayed by package
Hey I have a `Post` model which can be of 2 types: `regular` and `poll`. A `Post` model of type `poll` will be related to a `Poll` model in a...
Unfortunately it's not working with the package [NovaDependencyContainer](https://github.com/epartment/nova-dependency-container). I use that dependency-container to show certain attributes, when something is selected in the form. But when I use NestedForms and I...
This fix solves a bug when there is a combobox on the form using the nested-form.
Newly added field wont display any validation error due to missing field.attribute, force adding them whenever replaceIndexSchema method called. rebuild dist to reflect the javascript changes
When I want to override nova original file fields or use other public components about the file field, it will not work. I found this component compiles the original file...
Passing a parameter to nasted form: ===== My basic form has a select input with 2 options, depends on a chosen option i should use different riles in my nestedDFrm...so...
Hi there! I'm facing an issue when creating (not when updating, which works well) a resource with a nested form. The issue comes when the related (nested) resource has a...
I've following One To Many Relation: ```php /** * Get the steps for the recipe. */ public function steps(): HasMany { return $this->hasMany(Step::class); } ``` ```php /** * Get the...