関連するモデルが2つあります: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();