@extends('layouts.app') @section('page-title', 'Bank Accounts') @section('content')

Bank Accounts

@forelse($accounts as $account)
{{ $account->bank_name }}
@if($account->is_active) Active @else Inactive @endif

Account Name: {{ $account->account_name }}

Account Number: {{ $account->account_number ?? 'N/A' }}

Branch: {{ $account->branch ?? 'N/A' }}

Balance: {{ number_format($account->balance, 2) }}

Transactions: {{ $account->transactions->count() }}

@empty
No bank accounts found. Add your first account
@endforelse
@endsection