1//Ensure the $fillable array is set correctly on your Eloquent model.
2class ItemName extends Model
3{
4 protected $fillable = [
5 'inc',
6 'item_name',
7 'short_name',
8 'definition_eng',
9 'definition_ind',
10 ];
11}