首页 > 解决方案 > 获取与所选评论关联的帖子内容(方法帖子不存在)

问题描述

我有这段代码来获取与所选评论关联的帖子内容:

$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');
 }

标签: laravel

解决方案


试试下面的代码:

$postContent = Comment::find($commentID)->post;

推荐阅读