add month name to monthlytable

This commit is contained in:
Romulus21
2024-03-11 09:10:02 +01:00
parent dc9351dd9a
commit 2f260555cb
2 changed files with 2 additions and 2 deletions

View File

@@ -138,7 +138,7 @@ class RainfallController extends Controller
$result[$month][] = [
'year' => $date->year,
'month' => $date->month,
'label' => $date->monthName.' '.$date->year,
'label' => $date->monthName,
'values' => (int) $rainfalls,
];
}