@extends('layouts.app') @section('title', 'Chart of Accounts') @include('inventory.accounting.partials.styles') @section('content')
Every account in your ledger. Balances update automatically as you post entries.
| Code | Name | Opening | Current Balance | Status | |
|---|---|---|---|---|---|
{{ $account->code }} |
{{ $account->name }}
@if($account->description){{ $account->description }} @endif
|
{{ number_format($account->opening_balance, 2) }} | {{ number_format($account->current_balance, 2) }} | @if($account->is_active) Active @else Inactive @endif @if($account->is_bank)Bank@endif @if($account->is_system)System@endif | Ledger Edit |