@extends('layouts.app') @section('content')
| Account | Sub Account | Description | Debit | Credit |
|---|---|---|---|---|
| {{ $entry->account->account_code ?? '' }} - {{ $entry->account->account_name ?? '' }} | {{ $entry->subAccount->sub_account_code ?? '-' }} {{ $entry->subAccount->sub_account_name ?? '' }} | {{ $entry->description }} | {{ number_format($entry->debit, 2) }} | {{ number_format($entry->credit, 2) }} |
| Total | {{ number_format($totalDebit, 2) }} | {{ number_format($totalCredit, 2) }} | ||