@extends('layouts.app') @section('title', 'Chart of Accounts') @section('page-title', 'Chart of Accounts') @section('content')
| Code | Account Name | Sub-Type | Balance (₹) | System |
|---|---|---|---|---|
| {{ $account->account_code }} |
{{ $account->account_name }}
@foreach($account->children as $child)
↳ {{ $child->account_code }} {{ $child->account_name }}
@endforeach
|
{{ str_replace('_',' ', $account->account_sub_type ?? '') }} | {{ number_format($account->current_balance, 2) }} | @if($account->is_system) System @else — @endif |