在laravel 5中从db中检索时,如何将drop box值设置为unique?

时间:2016-04-13 08:52:56

标签: laravel-5

db表中有一些重复的行。从db中检索并设置下拉框时,它应该唯一地显示值。我应该怎么做?

enter image description here

我想避免在投递箱中重复2

1 个答案:

答案 0 :(得分:0)

我有Illuminate\Support\Collection的实例,而不是像你这样做

$unique = $collection->unique(); // where $collection is of course the variable that holds your collection

$unique->values()->all(); // [1,2,3,4]