我正在学习Laravel和PHP,我正在尝试使用Artisan的Tinker在我的表格中添加一个帖子。
我收到这些我不明白的错误:
Illuminate/Database/Eloquent/MassAssignmentException with message 'Add [username] to fillable property to allow mass assignment on [App/post].'
在我的帖子中.php模型我有:
protected $fillable = ['username', 'email', 'content'];
感谢您的帮助
慕盖茨4494581