Sélectionnez JOING DISTICT
$items = DB::table('item')->select('item_name')->distinct()->get();
NachooCh
$items = DB::table('item')->select('item_name')->distinct()->get();
SELECT DISTINCT table1.field1, table2.field2 FROM table1
JOIN table2 ON table1.id = table2.id