use distinct with multiple columns in laravel
问题 my table structure is as below date seller unit price total 05-06-17 abc 14 700 9800 05-06-17 pqr 12 600 7200 05-06-17 abc 10 520 5200 06-06-17 abc 10 600 6000 06-06-17 pqr 15 520 7800 06-06-17 pqr 16 520 8320 I need to fetch record like 1) 'date' = '05-06-2017', 'seller' = 'abc', 'total' = '15000' 2) 'date' = '05-06-2017', 'seller' = 'pqr', 'total' = '7200' 3) 'date' = '06-06-2017', 'seller' = 'abc', 'total' = '6000' 4) 'date' = '06-06-2017', 'seller' = 'pqr', 'total' = '16120' I need data