我试图通过Post获得的票数来订购帖子表.
投票存储在另一个表中
(Votes: post_id, user_id, Vote_type)
后期型号:
class Post extends Model
{
public function user()
{
return $this->hasOne(User::class);
}
public function Votes()
{
return DB::table('Votes')->where('post_id','=',$this->id)->sum('Vote_type');
}
}
投票函数返回一个帖子收到的投票数(投票存储在一个单独的表中)
现在我试图通过他们获得的票数来订购所有帖子.
Post::get()->sortBy('Votes');
这将返回以下错误:
Relationship method must return an object of type Illuminate\Database\Eloquent\Relations\Relation
我会感谢任何帮助解决这个问题!
解决方法:
试试看
Post::get()->sortBy(function($query){
return $query->Votes();
});
替代
您可以使用withCount(),因为它会在结果模型上放置{relation} _count列.
Post::withCount(['Votes'])
->orderBy('Votes_count')
->get()
对于分页
Post::withCount(['Votes'])
->orderBy('Votes_count')
->paginate();
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。