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
Try using attach to create the relationship:
foreach($product->options as $option){ $new_option = $option->replicate(); $new_option->save(); $new_option_id = $new_option->id; $new_product->options()->attach($new_option_id); }