📅  最后修改于: 2022-03-11 14:54:00.985000             🧑  作者: Mango
//Ensure the $fillable array is set correctly on your Eloquent model.
class ItemName extends Model
{
protected $fillable = [
'inc',
'item_name',
'short_name',
'definition_eng',
'definition_ind',
];
}