From 84ffcf9bf8aafa0cd7119fb0cee8e20f4a54273e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EA=B9=80=EB=B3=B4=EA=B3=A4?= Date: Thu, 5 Feb 2026 07:59:00 +0900 Subject: [PATCH] =?UTF-8?q?refactor:=EC=9E=AC=EB=AC=B4=EA=B4=80=EB=A6=AC?= =?UTF-8?q?=20=EA=B3=84=EC=A2=8C=EA=B1=B0=EB=9E=98=EB=82=B4=EC=97=AD=20?= =?UTF-8?q?=E2=86=92=20=EB=B0=94=EB=A1=9C=EB=B9=8C=20=EA=B3=84=EC=A2=8C=20?= =?UTF-8?q?=EC=9E=85=EC=B6=9C=EA=B8=88=EB=82=B4=EC=97=AD=20=EB=A6=AC?= =?UTF-8?q?=EB=94=94=EB=A0=89=EC=85=98=EC=9C=BC=EB=A1=9C=20=EB=B3=80?= =?UTF-8?q?=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Opus 4.5 --- routes/web.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/routes/web.php b/routes/web.php index 1e02fe30..04527340 100644 --- a/routes/web.php +++ b/routes/web.php @@ -694,13 +694,13 @@ Route::get('/{id}/edit', [\App\Http\Controllers\Finance\BankAccountController::class, 'edit'])->name('edit'); }); - // 계좌거래내역 + // 계좌거래내역 → 바로빌 계좌 입출금내역으로 리디렉션 Route::get('/account-transactions', function () { if (request()->header('HX-Request')) { - return response('', 200)->header('HX-Redirect', route('finance.account-transactions')); + return response('', 200)->header('HX-Redirect', route('barobill.eaccount.index')); } - return view('finance.account-transactions'); + return redirect()->route('barobill.eaccount.index'); })->name('account-transactions'); // 자금계획일정 (실제 구현)