From 05fdfac76d133b1a8bf4061cd1c5fa12c0122aa7 Mon Sep 17 00:00:00 2001 From: root Date: Sat, 30 May 2026 22:18:38 +0800 Subject: [PATCH] =?UTF-8?q?fix(route):=20resolve=20F-06=20=E2=80=94=20fix?= =?UTF-8?q?=20route=20name=20typo=20'thrshold'=20to=20'threshold'?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/routes/web.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/routes/web.php b/src/routes/web.php index 58b708db..7392266a 100644 --- a/src/routes/web.php +++ b/src/routes/web.php @@ -19,12 +19,13 @@ Route::middleware('auth')->group(function () { Route::get('/rainfall/graph/{stationid}', [App\Http\Controllers\RainfallController::class, 'rainfallGraph'])->name('rainfall.graph'); Route::get('/rainfall/historical', [App\Http\Controllers\RainfallController::class, 'historicalRainfall'])->name('historicalrf'); Route::get('/rainfall/historical/export', [App\Http\Controllers\RainfallController::class, 'exportHourlyRainfallExcel'])->name('historicalrfexport'); + Route::get('/rainfall/daily', [App\Http\Controllers\RainfallController::class, 'dailyRainfall'])->name('dailyrainfall'); Route::get('/threshold', [App\Http\Controllers\RainfallController::class, 'rainfallSum'])->name('threshold'); Route::get('/threshold/graph/{stationid}/{dates}', [App\Http\Controllers\RainfallController::class, 'graphPage'])->name('threshold.graph'); - Route::get('/threshold/graphData/{stationid}/{dates}', [App\Http\Controllers\RainfallController::class, 'graphData'])->name('thrshold.graphData'); + Route::get('/threshold/graphData/{stationid}/{dates}', [App\Http\Controllers\RainfallController::class, 'graphData'])->name('threshold.graphData'); Route::get('/waterlevel',[App\Http\Controllers\WaterLevelController::class, 'index'])->name('waterlevel'); Route::get('/waterlevel/historical',[App\Http\Controllers\WaterLevelController::class, 'wlHistory'])->name('historicalwl');