Ho due modelli correlati: Category
e Post
.
Il Post
modello ha uno published
scopo (metodo scopePublished()
).
Quando provo a ottenere tutte le categorie con tale ambito:
$categories = Category::with('posts')->published()->get();
Ottengo un errore:
Chiamata a un metodo non definito
published()
Categoria:
class Category extends \Eloquent
{
public function posts()
{
return $this->HasMany('Post');
}
}
Inviare:
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();