SQLSTATE [42S02]:找不到基表或视图:1146表'admin.product__images'不存在(SQL:插入product__images
(image
,updated_at
,{ {1}})值(uecJylfFeDlTCKQI96Ipgd2F8kBWWd.jpeg,2018-07-18 06:06:45,2018-07-18 06:06:45))
答案 0 :(得分:0)
$product = new Product(array(
'name' => $request->get('name'),
'price' => $request->get('price'),
'description' => $request->get('description'),
'shipping' => $request->get('shipping'),
));
$product->save();
$id=$product->id;
$data=new Productimage(array(
'product_id'=>$id,
'image'=>$picName,
));