Laravel. İlişkili modellerde kapsam () kullanın


105

İlgili iki modelim var: Categoryve Post.

PostModel vardır publishedkapsamı (yöntem scopePublished()).

Bu kapsamdaki tüm kategorileri almaya çalıştığımda:

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

Bir hata alıyorum:

Tanımlanmamış yönteme çağrı published()

Kategori:

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

İleti:

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


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

}

Yanıtlar:


185

Bunu satır içi yapabilirsiniz:

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

Ayrıca bir ilişki de tanımlayabilirsiniz:

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

ve sonra:

//all posts
$category->posts;

// published only
$category->postsPublished;

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

6
Bu arada, YALNIZCA gönderi yayınladığınız yere ulaşmak istiyorsanız:Category::whereHas('posts', function ($q) { $q->published(); })->get();
tptcat

2
@tptcat evet. Category::has('postsPublished')Bu durumda da olabilir
Jarek

Temiz soru, temiz cevap!
Mojtaba Hn
Sitemizi kullandığınızda şunları okuyup anladığınızı kabul etmiş olursunuz: Çerez Politikası ve Gizlilik Politikası.
Licensed under cc by-sa 3.0 with attribution required.