laravel根据属性过滤结果

时间:2018-04-30 07:39:02

标签: mysql laravel eloquent vuejs2 laravel-query-builder

我有一个名为" motor"和他们保存在子表中的属性" motor_attributes"。属性是动态的,它们可以保存任何id和值。  这种关系是一对多的关系。 问题是我无法搜索任何属性。它给了我相同的父表项 " enteries&#34 ;.

我想说清楚一点。每次它给我6个肠。即使我改变了$ request-> get(' body_condition')的值。手动。因为它的查询字符串。 我想最好地根据这些属性过滤电机。 任何帮助将不胜感激。 它只隐藏属性而不是主要广告。 任何帮助将不胜感激。 在此先感谢

```````````

        $perPage = 20;
        $motorQuery = Motor::with(['advertisementPhotos', 'country', 'city', 'customer.dealer','favouriteAd', 'adAttributes' => function ($query) use ($request){

             // dd($request->get('body_condition'));
             $query->where('integer_value',$request->get('body_condition'));
             $query->with('attribute');
             $query->with('adAttributeValue');
             $query->where('show_listing_page',1);
        //;
        //  return $query->take(2);

          }])
        ->where('status', 1)
        ->where('date_expiry', '>=', date('Y-m-d') . ' 00:00:00');


    if (request()->filled('city')) {
        $motorQuery->where('city', request()->get('city'));
    }
    if (request()->filled('keywords')) {
        $motorQuery->where('title', 'like', '%' . request()->get('keywords') . '%');
    }
    if (request()->filled('from_price')) {
        $motorQuery->where('price', '>=', request()->get('from_price') );
    }
    if (request()->filled('to_price')) {
        $motorQuery->where('price', '<=', request()->get('to_price') );
    }


    if (request()->hasCookie('country')) {
        $motorQuery->where('country', request()->cookie('country')->first()->id);
    }

    $data['allMotors'] =  $allMotors = $motorQuery->orderBy('featured', 'desc')->orderBy('date_posted', 'desc')->paginate($perPage);

```

2 个答案:

答案 0 :(得分:0)

您必须尝试使用​​join for属性过滤器。此外,如果任何与属性相关的表,并且您希望这些表中的某些数据也加入这些表。尝试这样的事情:

$motorQuery = Motor::with(['advertisementPhotos', 'country', 'city', 'customer.dealer','favouriteAd'])
            ->join('ad_attribute_value', 'ad_attribute_value.motor_id', '=', 'motor.id')
            ->where(function($query) use ($request){
                       if($request->get('body_condition') != '')
                           $query->where('integer_value', '=', $request->get('body_condition'))
            })
            ->where('status', 1)
            ->where('date_expiry', '>=', date('Y-m-d') . ' 00:00:00');

看看它是否适合你。

答案 1 :(得分:0)

好的,所以我从你的代码中看到它,你试图在这里过滤电机并在错误的地方使用过滤器。

with子句中的过滤器仅过滤要急切加载的关系,而不是父模型。

要使用Eloquent语法过滤父模型,请使用“has”或快捷方式“whereHas”:

$perPage = 20;
$bodyCondition = request('body_condition');
$motorQuery = Motor::with(['advertisementPhotos', 'country', 'city', 'customer.dealer','favouriteAd', 'adAttributes.attribute', 'adAttributes.adAttributeValue'])
    ->whereHas('adAttributes', function ($q) use ($bodyCondition) {
        $q->where('integer_value', $bodyCondition)
          ->where('show_listing_page',1);
    })
    ->where('status', 1)
    ->where('date_expiry', '>=', date('Y-m-d') . ' 00:00:00');