What is Guarded Attribute in a Model ?
It is the reverse of fillable. When a guarded specifies which fields are not mass assignable.
BY Best Interview Question ON 06 May 2020
Example
class User extends Model {
protected $guarded = ['user_type'];
}