refactor:재무관리 계좌거래내역 → 바로빌 계좌 입출금내역 리디렉션으로 변경
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
@@ -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');
|
||||
|
||||
// 자금계획일정 (실제 구현)
|
||||
|
||||
Reference in New Issue
Block a user