From {{ \Carbon\Carbon::parse($data['date_from'])->format('F j, Y') }} to {{ \Carbon\Carbon::parse($data['date_to'])->format('F j, Y') }}
| {{ __('accounting::filament/clusters/reporting.common.account') }} | {{ __('accounting::filament/clusters/reporting.common.date') }} | {{ __('accounting::filament/clusters/reporting.common.communication') }} | {{ __('accounting::filament/clusters/reporting.common.partner') }} | {{ __('accounting::filament/clusters/reporting.common.debit') }} | {{ __('accounting::filament/clusters/reporting.common.credit') }} | {{ __('accounting::filament/clusters/reporting.common.balance') }} |
|---|---|---|---|---|---|---|
| {{ $account->code }} {{ $account->name }} | {{ number_format($account->period_debit, 2) }} | {{ number_format($account->period_credit, 2) }} | {{ number_format($account->ending_balance, 2) }} | |||
| {{ __('accounting::filament/clusters/reporting.common.opening-balance') }} | {{ \Carbon\Carbon::parse($data['date_from'])->format('m/d/Y') }} | {{ number_format($account->opening_balance, 2) }} | ||||
| {{ $move['move_name'] }} | {{ \Carbon\Carbon::parse($move['date'])->format('m/d/Y') }} | {{ $move['name'] ?? '' }} | {{ $move['partner_name'] ?? '' }} | {{ $move['debit'] > 0 ? number_format($move['debit'], 2) : '' }} | {{ $move['credit'] > 0 ? number_format($move['credit'], 2) : '' }} | {{ number_format($runningBalance, 2) }} |
| {{ __('accounting::filament/clusters/reporting.common.total') }} | {{ number_format($totalDebit, 2) }} | {{ number_format($totalCredit, 2) }} |