我有两张桌子
women-dress
women-dress_attributes
women-dress
有price
,color
和women-dress_attributes
有display_name
,attribute_name
和filter
filter
是一个简单的Y或N值
women-dress_attributes
中的一行看起来像
Price price Y
由于价格的过滤值为Y,我需要从price
加载不同的women-dress
值
我的控制器的一部分看起来像这样
$Filter_query = DB::table($attribute_table_name)
->select('display_name','attribute')
->where('filter', '=', 'Y')
->get();
在我的刀片文件中我有
@foreach($Filter_query as $agm)
<h4>{{ $agm->display_name }}</h4>
@endforeach
现在如何运行另一个sql select distinct查询来加载刀片文件中的相应值?
还是有更好的做法?