有人知道用Laravel的雄辩表示法中的共享列值将行分组的方法吗?
例如,如果我们具有以下类型的数据库表:
ID, Label, Name, Value
-------------------------
1, Dimension, Height, 15
2, Dimension, Weight, 250
3, Dimension, Width, 200
4, Style, Color, Blue
我怎么选择类似的东西
$product['Dimension']['Height']
or
$product['Dimension']['Width']...
有人有这样的运气吗?我知道我可以用一个相关的表来做到这一点,但是我试图不必重新处理这个已经存在的代码库。
我尝试使用Eloquent的“ groupBy”,但只会返回第一个“ Dimension”。