middleware('throttle:5,1'); Route::post('/verify-otp', [AuthController::class, 'verifyOtp'])->middleware('throttle:10,1'); Route::post('/auth/send-otp', [AuthController::class, 'sendOtp'])->middleware('throttle:5,1'); Route::post('/auth/verify-otp', [AuthController::class, 'verifyOtp'])->middleware('throttle:10,1'); Route::get('/profile', [ProfileController::class, 'show']); Route::put('/profile', [ProfileController::class, 'update']); Route::apiResource('/children', ChildController::class)->except(['show']); Route::post('/gizi/hitung', [GiziController::class, 'hitung']); Route::get('/gizi/riwayat/{childId}', [GiziController::class, 'riwayat']); Route::get('/riwayat/{childId}', [GiziController::class, 'riwayat']); Route::get('/rekomendasi/{status}', [RecommendationController::class, 'show']); Route::get('/news', [NewsController::class, 'index']); Route::get('/articles', [ArticleController::class, 'index']);