Mam dwa powiązane modele: Category
i Post
.
Post
Model ma published
zakres (metoda scopePublished()
).
Kiedy próbuję uzyskać wszystkie kategorie z tym zakresem:
$categories = Category::with('posts')->published()->get();
Pojawia się błąd:
Wywołanie niezdefiniowanej metody
published()
Kategoria:
class Category extends \Eloquent
{
public function posts()
{
return $this->HasMany('Post');
}
}
Poczta:
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();
Category::has('postsPublished')
w tym przypadku