Tylko obejście, ale powinno działać. Czekam na więcej ciastek
Ponieważ zasadniczo chcesz wypełnić products
i product_attributes
tabele możesz ustawić w ten sposób nową relację
Tabela produktów:
$this->hasMany('ProductsAttributes', [ /* configure keys here */ ]);
I kształtuj swoje dane w ten sposób
[
'type_id' => '12',
'name' => 'Audi',
'thumbnail' => '',
'image' => '',
'products_attributes' => [
[
'attribute_id' => '9',
'amount' => '2',
'value' => '1',
'information' => 'front'
],
[
'attribute_id' => '9',
'amount' => '2',
'value' => '1',
'information' => 'rear'
]
]
]
Spowoduje to utworzenie nowego wiersza w products
i dwa nowe wiersze w product_attributes