在Laravel 5.4中,可以通过以下步骤来获得评论最多的帖子:
public function comments()
{
return $this->hasMany(Comment::class);
}
public function post()
{
return $this->belongsTo(Post::class);
}
public function getMostCommentedPost()
{
$post = Post::withCount('comments')
->orderBy('comments_count', 'desc')
->first();
return $post;
}
这样,你就可以在Laravel 5.4中获得评论最多的帖子了。请注意,以上代码仅为示例,实际应用中可能需要根据具体情况进行调整。
领取专属 10元无门槛券
手把手带您无忧上云