使用Laravel Eloquent插入数组

时间:2015-11-25 03:37:56

标签: php laravel-5.1

我有一个使用array_combine组合的数组。我试图将每个数组KEY AND VALUE存储到子表中。但是,我无法理解这样做。请帮忙!

这里是回归阵列的一个例子     数组:2 [▼         "设计" => "模式"         "品牌" => "索尼"     ]

产品型号

  public function productAttributes()
    {
        return $this->hasMany('App\ProductAttribute');
 }

产品属性模型

protected $fillable = [
    'attribute_name', 'attribute_value', 'used_as_filter'
];

public function product()
{
    return $this->belongsTo('App\Product');
}

产品控制器

$product = new Product();
    $product->category_id = $request->category_list;
    $product->name = $request->name;
    $product->price = $request->price;

    $product->save();

    /**Optional Data**/
    if ($request->has('attribute_name')){
        $attributes = array_combine($request->input('attribute_name'), $request->input('attribute_value'));

        $product->productAttributes()->create($attributes);
    }

当我运行它时,我将一行插入到product表中,并将一行插入到product_attribute表中。但是,列attribute_name和attribute_value是空白的。

1 个答案:

答案 0 :(得分:0)

$attributes = array_combine($request->input('attribute_name'), $request->input('attribute_value'));

collect($attributes)->each(function ($value, $name) use ($product) {
    $product->productAttributes()->create([ 'attribute_name' => $name, 'attribute_value' => $value, ]);
});