我想退回模型及其部分关系
前任::
用户模型
public function comments()
{
return $this->hasMany('comments');
}
评论模型
public function user()
{
return $this->belongsTo('user');
}
我可以返回所有评论以及与评论关联的用户名吗?
想要的效果是
$comment = Comments::find($id);
$comment->user;
return $comment;
这将返回一条评论和关联的用户完整模型。我只需要用户名。如果我打电话,这不起作用Comments::all()
先感谢您。