Код: Выделить всё
$kos = DB::select('SELECT team,round,SUM(points) AS total from points WHERE round="first" GROUP by team ORDER BY total desc, run_rate desc limit 4');
Код: Выделить всё
$kos = DB::select('SELECT team,round,SUM(points) AS total FROM points WHERE round="first" GROUP by team ORDER BY total DESC, run_rate DESC LIMIT 4');
foreach($kos as $ko){
dd($ko->team);
}
Кто -нибудь может сказать мне почему?
Подробнее здесь: https://stackoverflow.com/questions/555 ... in-foreach