Laravel Eloquent Filter By Column of Relationship

Viewed 64955

Using the Eloquent ORM I have my models set up like so: Post belongsToMany Category

Post.php

public function categories()
{
    return $this->belongsToMany('Category', 'posts_categories');
}

I want to filter posts by a column of the categories relationship.

So I want to do something like:

$posts->where('categories.slug', '=', Input::get('category_slug'));

This doesn't work though.

I also tried:

$with['categories'] = function($query){ 
    $query->where('slug', '=', Input::get('category_slug'));
};

$posts::with($with)->get();

But I thnk that's for filtering the categories not filtering BY the category.

Can anyone show me the way?

2 Answers

Here's a quick way to filter on related model column:

$allConsultants = Consultant::whereHas('user', function($query)
{
    $query->where('is_approved', '=', 1);

})->get();
Related