Фреймворк Laravel. Использование scope() в моделях с отношением


у меня есть две связанные модели: Category и Post.

The Post модель published объем (методом scopePublished()).

когда я пытаюсь получить все категории с этим объем:

$categories = Category::with('posts')->published()->get();

Я получаю сообщение об ошибке:

вызов неопределенного метода published()

категория:

class Category extends Eloquent
{
    public function posts()
    {
        return $this->HasMany('Post');
    }
}

сообщение:

class Post extends Eloquent
{
   public function category()
   {
       return $this->belongsTo('Category');
   }


   public function scopePublished($query)
   {
       return $query->where('published', 1);
   }

}
1 70

1 ответ:

вы можете сделать это inline:

$categories = Category::with(['posts' => function ($q) {
  $q->published();
}])->get();

вы также можете определить соотношение:

public function postsPublished()
{
   return $this->hasMany('Post')->published();
   // or this way:
   // return $this->posts()->published();
}

и затем:

//all posts
$category->posts;

// published only
$category->postsPublished;

// eager loading
$categories->with('postsPublished')->get();