我有一个名为Message
的模型,其中有一列created_by
,其中引用了User
的ID。我使用Eloquent来检索模型,我想将created_by
字段更改为User的full_name而不是返回id。
我试图像这样修改访问者:
public function getCreatedByAttribute()
{
return $this->user->full_name;
}
但后来我收到错误:Exception in Response.php line 60:: Failed calling App\Entities\Message::jsonSerialize()
。