Laravel Eloquent ORM replicate
问题 I have a problem with replicating one of my models with all the relationships. The database structure is as follows: Table1: products id name Table2: product_options id product_id option Table3: categories id name Pivot table: product_categories product_id category_id Relationships are: product hasMany product_options product belongsToMany category (trough product_categories) I would like to clone a product with all the relationships. Currently here is my code: $product = Product::with(