ララヴェル。関係のあるモデルでscope()を使用する


101

関連するモデルが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);
   }

}

回答:


178

あなたはインラインでそれを行うことができます:

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

6
ちなみに、投稿した場所のみを取得したい場合:Category::whereHas('posts', function ($q) { $q->published(); })->get();
tptcat

2
@tptcatはい。Category::has('postsPublished')この場合もあり得ます
Jarek Tkaczyk

きれいな質問、きれいな答え!
Mojtaba Hn
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.