Repeater and many-to-many (belognsToMany, morphsToMany) not saving
I have this issue where repeater cant handle
Having this structure with
belongsToMany
or morphToMany
relations.Having this structure with
Product
, Option
and a pivot table ConnectedModel
, and after a lot of debuging I think Filament does insert the rows in the pivot table but it deletes it for some reason when using ->saveRelationshipUsing()
, because is trying to save it again for some reason and there is no way as I see to disabled the auto relation save and allow only the manual save to avoid this.
Product class
Option class
ConnectedModel pivot class
Anyone have this problem and any idea how to handle this?1 Reply
up