Laravel. Usa scope () nei modelli con relazione


102

Ho due modelli correlati: Categorye Post.

Il Postmodello ha uno publishedscopo (metodo scopePublished()).

Quando provo a ottenere tutte le categorie con tale ambito:

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

Ottengo un errore:

Chiamata a un metodo non definito published()

Categoria:

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

Inviare:

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


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

}

Risposte:


179

Puoi farlo in linea:

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

Puoi anche definire una relazione:

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

e poi:

//all posts
$category->posts;

// published only
$category->postsPublished;

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

6
Per inciso, se vuoi arrivare SOLO dove hai pubblicato i post:Category::whereHas('posts', function ($q) { $q->published(); })->get();
tptcat

2
@tptcat sì. Può anche essere Category::has('postsPublished')in questo caso
Jarek Tkaczyk

Domanda pulita, risposta pulita!
Mojtaba Hn
Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.