From c55380f1d24dc832272d9db671deece78f7c1cc8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EA=B9=80=EB=B3=B4=EA=B3=A4?= Date: Wed, 4 Mar 2026 11:10:01 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20[cards]=20cards/stats=20=E2=86=92=20card?= =?UTF-8?q?-transactions/dashboard=20=EB=A6=AC=EB=8B=A4=EC=9D=B4=EB=A0=89?= =?UTF-8?q?=ED=8A=B8=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- routes/api/v1/finance.php | 1 + 1 file changed, 1 insertion(+) diff --git a/routes/api/v1/finance.php b/routes/api/v1/finance.php index 2d03aca..aa04c13 100644 --- a/routes/api/v1/finance.php +++ b/routes/api/v1/finance.php @@ -50,6 +50,7 @@ Route::put('/{id}', [CardController::class, 'update'])->whereNumber('id')->name('v1.cards.update'); Route::delete('/{id}', [CardController::class, 'destroy'])->whereNumber('id')->name('v1.cards.destroy'); Route::patch('/{id}/toggle', [CardController::class, 'toggle'])->whereNumber('id')->name('v1.cards.toggle'); + Route::get('/stats', fn () => redirect()->route('v1.card-transactions.dashboard', request()->query())); }); // BankAccount API (계좌 관리)