라 라벨. 관계가있는 모델에서 scope () 사용


102

두 가지 관련 모델이 있습니다 : 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);
   }

}

답변:


179

인라인으로 할 수 있습니다.

$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.