fourtwothree / daily-code

日常工作代码笔记
1 stars 0 forks source link

今天发现的关于是否需要设置$fillable属性的一点自己以前不知道的小东西 #28

Open fourtwothree opened 6 years ago

fourtwothree commented 6 years ago

1.如果是批量更新或者批量插入,需要设置,在model里

protected $fillable = [];

2.如果通过实例属性赋值,则不需要

$goods = new Goods();
$goods->name = $name;
$goods->note = $note;