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

Chart of Accounts

Manage your ledger accounts

New Account
Account Tree
Accounts
@forelse($accounts ?? [] as $account) @empty @endforelse
CodeNameTypeParentBalanceActions
{{ $account->code ?? '' }} {{ $account->name }} {{ ucfirst($account->type ?? '') }} {{ $account->parent->name ?? 'Top Level' }} {{ number_format($account->opening_balance ?? 0, 2) }}

No accounts found

@endsection @push('scripts') @endpush