我有一个从数据库自动填充的选择框。我的数据库表有一个列(estatename),其中包含名称相似的项目,例如:
id | estate_cat_id | estatename | Location | Size
1 1 Estate1 Location One bedroom
2 2 Estate2 Location Two bedroom
3 3 Estate1 Location Three bedroom
4 4 Estate2 Location One bedroom
我的表格中的遗产下降显示所有遗产名称也重复相似的遗产名称。我不希望下拉包含重复的庄园名称。如何避免重复的遗产名称?
这是在我的视图中填充Estate框的方法:
public function findEstateName(Request $request){
$data=House::select('Estate','id')->where('prod_cat_id',$request->id)->take(100)->get();
return response()->json($data);//send this data to ajax success
}