@extends('layouts.app') @section('content')

Chart of Accounts

@forelse($accounts as $type => $typeAccounts)

{{ $type }} {{ $typeAccounts->count() }} accounts

@foreach($typeAccounts as $account) @endforeach
Code Account Name Sub Type Status
{{ $account->code }} {{ $account->name }} {{ $account->sub_type }} @if($account->is_active) Active @else Inactive @endif
@empty
No accounts found.
@endforelse
@endsection