У меня есть таблица результатов ниже
id user_id question_id score
1 1 1 23
2 1 2 100
3 1 3 200
$score = DB::table('Scores')
->where('user_id', \user()->id)
->groupBy('month')
->orderBy('month', 'ASC')
->get([
DB::raw('MAX(SCORE) AS score'),
DB::raw('MONTHNAME(created_at) as month'),
]);
max return 23 Что мне делать? спасибо