Laravel:ErrorException guraded vs fillable

时间:2015-10-06 15:23:51

标签: laravel-5.1

Laravel:

  

Model.php第2336行中的ErrorException:in_array()需要参数2   是数组,给定字符串

class Student extends Model
{
protected $guarded = 'student_id'; 

//protected $fillable = ['full_name',  'current_grade','branch']; 
}

我应该使用fillable吗?因为当我单独使用guarded时抛出此错误

1 个答案:

答案 0 :(得分:0)

即使你只有一个被保护的物品,你也需要传入一个数组。 protected $ guarded = [' student_id'];