laravel 使用create 报错 MassAssignmentException

在使用:   模型:create时报错, Add [name] to fillable property to allow mass assignment on [AppAdminUser].,因为extends Authenticatable而不是appmodel,

需要在  AdminUser模型中添加protected $guarded = [];//不可以注入数据字段

原文地址:https://www.cnblogs.com/lxwphp/p/9295777.html