İlgili iki modelim var: Category
ve Post
.
Post
Model vardır published
kapsamı (yöntem scopePublished()
).
Bu kapsamdaki tüm kategorileri almaya çalıştığımda:
$categories = Category::with('posts')->published()->get();
Bir hata alıyorum:
Tanımlanmamış yönteme çağrı
published()
Kategori:
class Category extends \Eloquent
{
public function posts()
{
return $this->HasMany('Post');
}
}
İleti:
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();