{{-- 계좌 목록 테이블 (HTMX로 로드) --}}
등록된 계좌가 없습니다.
@forelse($accounts as $account)
은행
계좌번호
예금종류
잔액
개설일자
최종처리일시
작업
{{-- 은행 --}}
@empty
{{ $account->bank_name }}
{{-- 계좌번호 --}}
{{ $account->account_number }}
{{-- 예금종류 --}}
{{ $account->account_type }}
{{-- 잔액 --}}
{{ $account->formatted_balance }}
{{-- 개설일자 --}}
{{ $account->opened_at?->format('Y-m-d') ?? '-' }}
{{-- 최종처리일시 --}}
{{ $account->last_transaction_at?->format('Y-m-d H:i') ?? '-' }}
{{-- 작업 버튼 --}}
@endforelse