现在我有点发脾气。我正在尝试使用更多的laravels约定来优化旧代码,而不是制作我自己的循环以获取我需要的数据。
所以这就是我现在所拥有的:
地区模型
class Region extends Eloquent {
public $timestamps = false;
public function vms() {
return $this->hasMany('Vm');
}
}
游戏模型
class Game extends Eloquent {
public $table = 'vm_games';
public function vm() {
return $this->hasOne('Vm');
}
}
Vm模型
class Vm extends Eloquent {
public function games() {
return $this->hasMany('Game');
}
}
现在我想要的是以下内容:
$games = 0;
foreach($region->vms()->where('status', true)->get() as $vm) {
$games += $vm->games()->where('created_at', '>', date('Y-m-d H:i:s', time() - 5400))->count();
}
$sorted[$region->id]->games = $games;
现在使用Laravels Eloquent关系更加清晰:
$region->vms()->where('status', true)->count();
现在我想做的是这样的事情:
$games = $region->vms()->where('status', true)->games();
这显然不会起作用,我也试过玩“with”和“whereHas”,但无济于事。
我真的希望你能帮帮我。
亲切的问候, NIEK
答案 0 :(得分:2)
你可以尝试这样的事情,使用渴望加载和pluck():
$games = Region::with(['vms' => function($query) {
$query->where('status', true);
}, 'vms.games'])->get()->pluck('vms.games');