laravel-nova-nested-form icon indicating copy to clipboard operation
laravel-nova-nested-form copied to clipboard

This package allows you to include your nested relationships' forms into a parent form.

Results 61 laravel-nova-nested-form issues
Sort by recently updated
recently updated
newest added
trafficstars

Hello, I'm trying to update my project to Laravel Nova 4 and laravel-nova-nested-form is not compatible : **Log:** `PHP Fatal error: Declaration of Yassi\NestedForm\NestedForm::jsonSerialize() must be compatible with Laravel\Nova\Fields\Field::jsonSerialize(): array...

Fixed validation for items added via "+" (Add) button: - https://github.com/yassilah/laravel-nova-nested-form/issues/85 - https://github.com/yassilah/laravel-nova-nested-form/issues/104

Added property for customize panel label

* Laravel version: 7.16 * Nova version: 3.6 * PHP version: 7.4 * yassi/nova-nested-form: 3.0.7 I have configured NestedForm in a field, but creating a record with missing mandatory fields...

First of all, thank you for this awesome package. It really helped me very much during the development. But I have a small concern ie; BelongsTo fields inside nested form...

My Nested form not working for MorphTo Relation Here is my Model ` class Profile extends Model { public function address() { return $this->morphOne(Address::class, 'addressable'); } }` ` class Address...

Does this package support Many to Many Relations?

Hi, I'm encountering some issue with multilevel nested forms. I get this error message: ``` { "message": "The given data was invalid.", "errors": { "modules[1][module]": ["The module field is required."]...

First of all - I love the package - especially after the December update. Has anyone managed to make this package work with the Advanced Nova Media Field? I added...

I have a resource `User` with a nested Form `Posts`, just like the example in the documentation: ``` NestedForm::make('Posts', 'posts', \App\Nova\Post::class) ``` Now, the global search is broken, since the...