@if(in_array($account->type, ['Bank', 'Wallet'], true))
{{ $account->type === 'Bank' ? 'Bank Name' : 'App Name' }}
{{ $account->institution_name ?: '-' }}
Account Name
{{ $account->account_name ?: '-' }}
Acc. No.
{{ $account->account_number ?: '-' }}
Branch
{{ $account->branch ?: '-' }}
@elseif($account->type === 'Cash')
Name
{{ $account->name }}
@elseif($account->type === 'Person')
Mobile
{{ $account->mobile ?: '-' }}
WhatsApp
{{ $account->whatsapp ?: '-' }}
Address
{{ $account->address ?: '-' }}
Notes
{{ $account->notes ?: '-' }}
@endif
Opening Balance
{{ number_format((float) ($account->opening_balance ?? 0), 2) }}
Status
{{ $account->is_active ? 'Active' : 'Inactive' }}