KrendiL101

Results 2 comments of KrendiL101

It is still not resolved, can't save image in repeatable after first save. Also, when saving two images in repeatable, the same error

> Fixed by this section [Link](https://nova.laravel.com/docs/resources/repeater-fields.html#upserting-repeatables-using-unique-fields) > > just add **->uniqueField('id')** > > ``` > Repeater::make('Line Items') > ->asHasMany() > ->uniqueField('id') > ->repeatables([ > \App\Nova\Repeater\LineItem::make() > ]) > ``` >...