@extends('layouts.app') @section('header_title', 'Accounting ERP Chart of Accounts') @section('content')

📈 General Ledger Chart of Accounts

@foreach($accounts as $acc) @endforeach
Account CodeAccount NameTypeCurrent Balance
{{ $acc->account_code }}{{ $acc->account_name }}{{ $acc->account_type }}₦{{ number_format($acc->current_balance, 2) }}
@endsection