我有以下代码来获取与所选评论相关的帖子内容:
$postContent = Comment::find($commentID)->post()->first();
但是它显示“方法发布不存在。”
评论模型:
public function post(){
return $this->belongsTo('App\Post', 'post_id');
}
发布模型:
public function comments(){
return $this->hasMany('App\Comment', 'post_id');
}
答案 0 :(得分:0)
尝试以下代码:
$postContent = Comment::find($commentID)->post;