Laravel. Użyj zakresu () w modelach z relacją

102

Mam dwa powiązane modele: Categoryi Post.

PostModel ma publishedzakres (metoda scopePublished()).

Kiedy próbuję uzyskać wszystkie kategorie z tym zakresem:

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

Pojawia się błąd:

Wywołanie niezdefiniowanej metody published()

Kategoria:

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

Poczta:

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


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

}
Ilya Vo
źródło

Odpowiedzi:

179

Możesz to zrobić inline:

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

Możesz także zdefiniować relację:

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

i wtedy:

//all posts
$category->posts;

// published only
$category->postsPublished;

// eager loading
$categories->with('postsPublished')->get();
Jarek Tkaczyk
źródło
6
Nawiasem mówiąc, jeśli chcesz TYLKO dostać się tam, gdzie opublikowałeś posty:Category::whereHas('posts', function ($q) { $q->published(); })->get();
tptcat
2
@tptcat yes. Tak też może być Category::has('postsPublished')w tym przypadku
Jarek Tkaczyk
Czyste pytanie, czysta odpowiedź!
Mojtaba Hn