| {{ $accountCategoryName }} | 
            @foreach($accountCategory->accounts as $account)
                
                    | {{ $account->accountName }} | {{ $account->balance->startingBalance ?? '' }} | {{ $account->balance->debitBalance }} | {{ $account->balance->creditBalance }} | {{ $account->balance->netMovement }} | {{ $account->balance->endingBalance ?? '' }} | 
            @endforeach
            
                | Total {{ $accountCategoryName }} | {{ $accountCategory->summary->startingBalance ?? '' }} | {{ $accountCategory->summary->debitBalance }} | {{ $accountCategory->summary->creditBalance }} | {{ $accountCategory->summary->netMovement }} | {{ $accountCategory->summary->endingBalance ?? '' }} | 
            
                |  | 
            
        @endforeach