すべての関係を持つモデルの1つを複製することに問題があります。
データベースの構造は次のとおりです。
Table1: products
id
name
Table2: product_options
id
product_id
option
Table3: categories
id
name
Pivot table: product_categories
product_id
category_id
関係は次のとおりです。
すべての関係を持つ製品をクローンしたいと思います。現在ここに私のコードがあります:
$product = Product::with('options')->find($id);
$new_product = $product->replicate();
$new_product->Push();
foreach($product->options as $option){
$new_option = $option->replicate();
$new_option->product_id = $new_product->id;
$new_option->Push();
}
しかし、これは機能しません(関係は複製されません-現在、product_optionsを複製しようとしました)。
このコードは私のために働きました:
$model = User::find($id);
$model->load('invoices');
$newModel = $model->replicate();
$newModel->Push();
foreach($model->getRelations() as $relation => $items){
foreach($items as $item){
unset($item->id);
$newModel->{$relation}()->create($item->toArray());
}
}
ここからの回答: すべての関係を含むEloquentオブジェクトを複製しますか?
この答え(同じ質問)もうまくいきます。
//copy attributes from original model
$newRecord = $original->replicate();
// Reset any fields needed to connect to another parent, etc
$newRecord->some_id = $otherParent->id;
//save model before you recreate relations (so it has an id)
$newRecord->Push();
//reset relations on EXISTING MODEL (this way you can control which ones will be loaded
$original->relations = [];
//load relations on EXISTING MODEL
$original->load('somerelationship', 'anotherrelationship');
//re-sync the child relationships
$relations = $original->getRelations();
foreach ($relations as $relation) {
foreach ($relation as $relationRecord) {
$newRelationship = $relationRecord->replicate();
$newRelationship->some_parent_id = $newRecord->id;
$newRelationship->Push();
}
}
ここから: すべての関係を含むEloquentオブジェクトを複製しますか?
私の経験では、コードは多対多の関係で問題なく機能します。
$product = Product::with('options')->find($id);
$new_product = $product->replicate();
$new_product->{attribute} = {value};
$new_product->Push();
$new_product->options()->saveMany($product->options);
attach
を使用して関係を作成してみてください。
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);
}
これは5.5では問題なく動作しました。 image、mediaは関係名です。
$event = Events::with('image','media')->find($event_id);
if($event){
$newevent = $event->replicate();
$newevent->Push();
foreach ($newevent->getRelations() as $relation => $entries)
{
foreach($entries as $entry)
{
$e = $entry->replicate();
if ($e->Push())
{
$newevent->{$relation}()->save($e);
}
}
}
}