laravel doesn 27t work update

Solutions on MaxInterview for laravel doesn 27t work update by the best coders in the world

showing results for - "laravel doesn 27t work update"
Marie
15 Apr 2016
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}