当我想编辑帖子时,我收到了错误消息。 这是错误行所在的代码:
public function getTagListAttribute()
{
return $this->tags->lists('id')->all();
}
当我阅读完整帖子时它完美无缺,但当我想编辑它时,我会抛出此错误:Call to a member function lists() on null
我还有类别代码:
public function getCategoryListAttribute()
{
return $this->categories->lists('id')->all();
}
我可以编辑精美的类别,但不能编辑标签,并且他们会制作相同的主体。