我有三个表
MONEY_H
我想要使用这样的元值过滤结果:
tours (id , body) -> assume a record is (id: 1, body: somethings)
metas (id , key)-> assume a record is (id: 1, key: tour_price)
metables (meta_id , metable_id, metable_type, value) -> assume a record is: (meta_id: 1, metable_id: 1 , metable_type: App\Tour , value : 250000)
我的Tour模型也具有以下功能:
where tour_price is 250000 ?
我尝试过这个:
public function metas()
{
return $this->morphToMany('App\Meta', 'metable')->withPivot('value');
}
它只是使用数据透视表中的tour_price键返回游览。我想要这样的东西:
$tours = Tour::whereHas('metas', function($q){
$q->where('key','tour_price');
})->get()
但是没有用。
我的表格结构:
元: View Image
形容词:
答案 0 :(得分:0)
找到了! 解决方案是:
$q->where('key','tour_price')->where('value', 250000);
如果您要使用多个条件,则可以尝试:
Tour::whereHas('locations', function($q){
$q->where('slug','=','istanbul');
})
->whereHas('metas', function($q){
$q->where('key','tour_start_date')
->where('value','>=', '2018-07-23 00:00:00');
})
->whereHas('metas', function($q){
$q->where('key','tour_end_date')
->where('value','2018-08-05 00:00:00');
})->get();