fix: [cards] cards/stats → card-transactions/dashboard 리다이렉트 추가

This commit is contained in:
김보곤
2026-03-04 11:10:01 +09:00
parent da04b84bb5
commit 76192fc177

View File

@@ -51,6 +51,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 (계좌 관리)