Dobry den.
Mam otazku ci je mozne len pomocov SQL select fitrovat unikatne ID.
Priklad :
$bests_user = User::where('status', User::STATUS_COMPLETED)
->with('account.user', 'money')
->where('cash','>','1500')
->orderBy('cash', 'desc')
->limit(5)
->get();
co mi vracia tabulku v style
1 - Janko - 2000
2 - Janko - 1980
3- Fero - 1765
4- Miso - 1587
5 - Janko - 1512
Je mozne upravit SQL tak aby mi to vzdy vracalo account len raz a len s navysov hodnotov? Teda
1- Janko - 2000
2 - Fero - 1765
3- Miso - 1587
4- Karol - 1555
5- Peter - 1531
?