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