标签: php arrays database laravel collections
当我尝试更新db中的记录时,它不会更新它 as_any_mut。
as_any_mut
我无法理解在
returns false
我无法使用$product->images()->update(); 作为搜索条件,我必须ids按图片索引。
$product->images()->update();
ids
update
答案 0 :(得分:1)
也许您没有将name字段定义为图片模型中$fillable的可分配质量。转到图像模型并定义此属性:
name
$fillable
protected $fillable = ['name'];
文档:https://laravel.com/docs/5.3/eloquent#mass-assignment