Saya memiliki dua model terkait: Category
dan Post
.
The Post
model memiliki published
lingkup (metode scopePublished()
).
Saat saya mencoba mendapatkan semua kategori dengan cakupan itu:
$categories = Category::with('posts')->published()->get();
Saya mendapatkan kesalahan:
Panggilan ke metode yang tidak ditentukan
published()
Kategori:
class Category extends \Eloquent
{
public function posts()
{
return $this->HasMany('Post');
}
}
Pos:
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')
dalam kasus ini