1. ホーム
  2. laravel

[解決済み] Laravel. リレーションを持つモデルでscope()を使用する

2022-08-09 23:36:29

質問

2つの関連するモデルを持っています。 CategoryPost .

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);
   }

}

どのように解決するのですか?

インラインで行うことができます。

$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();