@lang('accounting-reports::lang.bank_account_details')

{{ $bankAccount->account_name }}

@if($bankAccount->account_type === 'liability') @lang('accounting-reports::lang.liability') @else @lang('accounting-reports::lang.asset') @endif

@if($bankAccount->linkedAccount) {{ $bankAccount->linkedAccount->name }}
@else @lang('accounting-reports::lang.not_linked') @endif

{{ $bankAccount->bank_name ?: '-' }}

{{ $bankAccount->account_number ?: '-' }}

{{ $bankAccount->ifsc_code ?: '-' }}

{{ $bankAccount->branch_name ?: '-' }}

{{ $bankAccount->opening_balance }}

{{ !empty($bankAccount->opening_date) ? @format_date($bankAccount->opening_date) : '-' }}

{{ $bankAccount->description ?: '-' }}

@if($bankAccount->is_active) @lang('accounting-reports::lang.active') @else @lang('accounting-reports::lang.inactive') @endif

{{ @format_date($bankAccount->created_at) }}