@extends('layouts.app') @section('title', 'Chart of Accounts') @section('content')

Accounting Hierarchy

Manage your chart of accounts and sub-accounts with full depth visibility.

@if(session('success')) @endif
@forelse($accounts as $account) @include('accounting.partials.account_row', ['account' => $account, 'level' => 0]) @empty @endforelse
Account Name Code Type Aggregated Balance Actions

No accounts found matching your filters.

@foreach($accounts as $account) @include('accounting.partials.account_modals', ['account' => $account]) @endforeach @endsection