// Post model public function comments() { return $this->hasMany(Comment::class); } // Post controller $comments = Post::find(1)->comments;