두 가지 관련 모델이 있습니다 : Category
및 Post
.
Post
모델이 갖는 published
범위 (방법 scopePublished()
).
해당 범위의 모든 범주를 얻으려고 할 때 :
$categories = Category::with('posts')->published()->get();
오류가 발생합니다.
정의되지 않은 메서드 호출
published()
범주:
class Category extends \Eloquent
{
public function posts()
{
return $this->HasMany('Post');
}
}
게시하다:
class Post extends \Eloquent
{
public function category()
{
return $this->belongsTo('Category');
}
public function scopePublished($query)
{
return $query->where('published', 1);
}
}
Category::whereHas('posts', function ($q) { $q->published(); })->get();