add monthly rainfalls

This commit is contained in:
Romulus21
2024-03-09 15:34:30 +01:00
parent 77412774c8
commit a0ed432d2b

View File

@@ -28,7 +28,7 @@ Route::middleware('auth:sanctum')->group(function () {
Route::post('/locations', [LocationController::class, 'store'])->name('location.store');
Route::get('/rainfalls/last-months', [RainfallController::class, 'lastMonths'])->name('rainfalls.last');
Route::get('/rainfalls/last-months', [RainfallController::class, 'lastMonths'])->name('rainfalls.last-months');
Route::get('/rainfalls/last', [RainfallController::class, 'lastRainfalls'])->name('rainfalls.last');
Route::get('/rainfalls/graph', [RainfallController::class, 'graphValue'])->name('rainfalls.graph');