最佳答案
我试图得到最流行的黑客马拉松,这需要订购各自的黑客马拉松的 partipants->count()
。抱歉,如果这有点难以理解。
我有一个格式如下的数据库:
hackathons
id
name
...
hackathon_user
hackathon_id
user_id
users
id
name
Hackathon
模式是:
class Hackathon extends \Eloquent {
protected $fillable = ['name', 'begins', 'ends', 'description'];
protected $table = 'hackathons';
public function owner()
{
return $this->belongsToMany('User', 'hackathon_owner');
}
public function participants()
{
return $this->belongsToMany('User');
}
public function type()
{
return $this->belongsToMany('Type');
}
}
HackathonParticipant
的定义是:
class HackathonParticipant extends \Eloquent {
protected $fillable = ['hackathon_id', 'user_id'];
protected $table = 'hackathon_user';
public function user()
{
return $this->belongsTo('User', 'user_id');
}
public function hackathon()
{
return $this->belongsTo('Hackathon', 'hackathon_id');
}
}
我试过 Hackathon::orderBy(HackathonParticipant::find($this->id)->count(), 'DESC')->take(5)->get());
,但我觉得我犯了一个大错误(可能是 $this-> id) ,因为它根本不起作用。
我如何去尝试获得最受欢迎的编程马拉松是基于最高数量的相关参与者的编程马拉松?