From d4bff6d8a7252dacf4ffe9e0914fa654871deb27 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EA=B9=80=EB=B3=B4=EA=B3=A4?= Date: Fri, 6 Feb 2026 06:18:09 +0900 Subject: [PATCH] =?UTF-8?q?feat:=EC=9E=AC=EB=AC=B4=20=EB=8C=80=EC=8B=9C?= =?UTF-8?q?=EB=B3=B4=EB=93=9C=20=EA=B3=84=EC=A2=8C=EB=B3=84=20=EC=9E=94?= =?UTF-8?q?=EC=95=A1=20=EB=B0=94=EB=A1=9C=EB=B9=8C=20=EC=8B=A4=EC=8B=9C?= =?UTF-8?q?=EA=B0=84=20=EC=97=B0=EB=8F=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 페이지 로드 시 바로빌 API로 실시간 잔액 조회 - 새로고침 버튼으로 수동 조회 가능 - 총 잔액 카드도 실시간 업데이트 Co-Authored-By: Claude Opus 4.5 --- resources/views/finance/dashboard.blade.php | 85 +++++++++++++++++++-- 1 file changed, 78 insertions(+), 7 deletions(-) diff --git a/resources/views/finance/dashboard.blade.php b/resources/views/finance/dashboard.blade.php index 14127a80..c35199c5 100644 --- a/resources/views/finance/dashboard.blade.php +++ b/resources/views/finance/dashboard.blade.php @@ -35,7 +35,7 @@ class="inline-flex items-center gap-2 px-4 py-2 bg-blue-600 hover:bg-blue-700 te

총 잔액

-

{{ number_format($accountSummary['total_balance']) }}원

+

{{ number_format($accountSummary['total_balance']) }}원

{{ $accountSummary['total_accounts'] }}개 계좌

@@ -130,13 +130,19 @@ class="inline-flex items-center gap-2 px-4 py-2 bg-blue-600 hover:bg-blue-700 te

계좌별 잔액

- - 전체보기 - +
+ + + 전체보기 + +
-
+
@forelse($accountBalances as $account) -
+
{{ mb_substr($account->bank_name, 0, 2) }} @@ -149,7 +155,7 @@ class="inline-flex items-center gap-2 px-4 py-2 bg-blue-600 hover:bg-blue-700 te
-

{{ number_format($account->balance) }}원

+

{{ $account->account_type }}

@@ -299,4 +305,69 @@ class="inline-flex items-center gap-2 px-4 py-2 bg-blue-600 hover:bg-blue-700 te
@endif
+ + @endsection