@extends('layouts.app') @section('title', 'Bank Accounts') @include('inventory.accounting.partials.styles') @section('content')
Register real bank accounts and link them to ledger accounts for reconciliation.
| Bank | Account Name | Number | Linked Account | Balance | Status | |
|---|---|---|---|---|---|---|
| {{ $b->bank_name }}@if($b->swift_code) SWIFT: {{ $b->swift_code }} @endif |
{{ $b->account_name }} | {{ $b->account_number ?? '—' }} | {{ optional($b->account)->code }} — {{ optional($b->account)->name }} | {{ number_format(optional($b->account)->current_balance ?? 0, 2) }} {{ $b->currency }} | @if($b->is_primary)Primary@endif @if($b->is_active)Active@elseInactive@endif | |
No bank accounts yet. | ||||||