Laravel:在关系中搜索查询

时间:2018-06-04 05:25:06

标签: laravel laravel-5.5 laravel-query-builder

当我在我的应用中添加新帖子时,添加单个帖子会影响7 tables。要获取包含所有帖子数据的所有帖子,我的简单查询如下所示:

$userPost   = Post::with(['product','postattribute.attribute.category','user.userDetails'])
                        ->offset($offset)
                        ->limit($limit)
                        ->whereStatus("Active")
                        ->whereIn('product_id', $userApprovalProductIDs)
                        ->orderBy('id','desc')
                        ->get();

所以我要回溯所有数据。现在我想在所有表中实现搜索查询,目前我只能搜索posts表。

如果我使用categorycategoryTitle表上进行搜索,我正在尝试编码

where('category.title','=', $serachTitle)

但是我的情况不适用。

POST模型关系:

public function user() {
    return $this->belongsTo(User::class);
}

public function product() {
    return $this->belongsTo(Product::class);
}

public function postattribute() {
    return $this->hasMany(PostAttribute::class);
}

POSTATTRIBUTES模型关系:

  public function post() {
    return $this->belongsTo(Post::class);
}

 public function attribute() {
    return $this->belongsTo(Attribute::class);
}

ATTRIBUTES模型关系:

   public function category() {
    return $this->belongsTo(Category::class);
}

 public function attributes() {
    return $this->belongsTo(Attribute::class);
}

我该怎么做?

1 个答案:

答案 0 :(得分:1)

要对嵌套关系应用过滤器,可以使用whereHas

$userPost   = Post::with(['product','postattribute.attribute.category','user.userDetails'])
    ->offset($offset)
    ->limit($limit)
    ->whereStatus("Active")
    ->whereIn('product_id', $userApprovalProductIDs)
    ->whereHas('postattribute.attribute.category', function ($query) use($serachTitle) {
        $query->where('title', '=', $searchTitle);
    })
    ->orderBy('id','desc')
    ->get();

Querying Relationship Existence

从评论中我理解的是你想知道如何在帖子的每个关系中进行搜索,我已经添加了一个用类别标题搜索的例子

->whereHas('postattribute.attribute', function ($query) use($var) {
    $query->where('some_field_of_attribute_table', '=', $var);
})

->whereHas('postattribute', function ($query) use($var) {
    $query->where('some_field_of_postattribute_table', '=', $var);
})