Nested relationship managers

I have this relationship

Products has many ProductVariants
ProductVariants belongsToMany Merchants, where there will be a pivot column stock_count as each merchants maintains a different stock count for each product variants.

I have created a VariantRelationshipManager for ProductResource however im not sure how i can add a nested relationship manager(merchants relationship) into VariantRelationshipManager.

is there a way for nested relationship manager inside a relationship manager?

or i'm looking at it wrongly.
Solution
I have this relationship

Products has many ProductVariants
ProductVariants belongsToMany Merchants, where there will be a pivot column stock_count as each merchants maintains a different stock count for each product variants.

I have created a VariantRelationshipManager for ProductResource however im not sure how i can add a nested relationship manager(merchants relationship) into VariantRelationshipManager.

is there a way for nested relationship manager inside a relationship manager?

or i'm looking at it wrongly.
Was this page helpful?