Tenho dois modelos relacionados: Category
e Post
.
O Post
modelo possui um published
escopo (método scopePublished()
).
Quando tento obter todas as categorias com esse escopo:
$categories = Category::with('posts')->published()->get();
Recebo um erro:
Chamada para método indefinido
published()
Categoria:
class Category extends \Eloquent
{
public function posts()
{
return $this->HasMany('Post');
}
}
Postar:
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();