How I can change the fillable attribute of a model on the fly?
For example, I have User model with, protected $fillable = ['name', 'email', 'password']
When updating the user, I want to exclude 'email' from mass assignment so that the email is not changed on update.