Level 88
This means you need to make sure the model accepts the fields! You can two options here!
You can use guarded to white fields that you can't assign by default
class Barbie extends Model
{
protected $guarded = []; // Accept all fields
}
Or you can whitelist fields that are fillable
class Barbie extends Model
{
protected $fillable = ['hair', 'skin']; // Accept specific fields
}
Here is a good blog to help you out: https://medium.com/@kshitij206/laravel-mass-assignment-guarded-or-fillable-7c3a64b49ca6