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 (계좌 관리)