outl1ne / nova-simple-repeatable

A Laravel Nova simple repeatable rows field.
MIT License
73 stars 42 forks source link

nested simplerepetable does not work #18

Open resendersphoenix opened 3 years ago

resendersphoenix commented 3 years ago

nested simple-repetable does not work correctly - losted values of nested simple-repetable

SimpleRepeatable::make('Test', 'test',
            [
                Text::make('Title'),
                Text::make('SubTitle'),
                SimpleRepeatable::make('List', 'list',
                    [
                        Text::make('Title'),
                    ]
                )->stacked(),
            ])

image after save - list titles lost values

Tarpsvo commented 2 years ago

Hi! Yeah, nested simple repeatable is not handled right now. This needs to be implemented.

jeremiahsherrill commented 1 year ago

Any Progress on this?