ฉันมีโมเดลที่เกี่ยวข้องสองแบบ: 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();