我使用一个关系的条件/约束创建了一个模型 Game,如下所示:
class Game extends Eloquent {
// many more stuff here
// relation without any constraints ...works fine
public function videos() {
return $this->hasMany('Video');
}
// results in a "problem", se examples below
public function available_videos() {
return $this->hasMany('Video')->where('available','=', 1);
}
}
当你这样使用它的时候:
$game = Game::with('available_videos')->find(1);
$game->available_videos->count();
一切正常,因为角色是最终的集合。
我的问题是:
当我试图访问它而不急于加载
$game = Game::find(1);
$game->available_videos->count();
当异常显示为“ 调用非对象上的成员函数 count ()”时抛出。
吸毒
$game = Game::find(1);
$game->load('available_videos');
$game->available_videos->count();
工作良好,但它似乎相当复杂,因为我不需要加载相关的模型,如果我不使用条件在我的关系。
我是否遗漏了什么? 我如何确保不使用即时加载就可以访问可用的视频?
对于任何感兴趣的人,我也张贴了这个问题的 http://forums.laravel.io/viewtopic.php?id=10470