{{ $account['tree_account_title'] ?? '-' }}
{{ __('Serial Number') }}: {{ $account['tree_account_serial_number'] ?? '-' }}| {{ __('Opening Balance') }} | {{ __('Period Movements') }} | {{ __('Final Balance') }} | ||||
|---|---|---|---|---|---|---|
| {{ __('Debit') }} | {{ __('Credit') }} | {{ __('Balance') }} | {{ __('Debit') }} | {{ __('Credit') }} | {{ __('Balance') }} | |
| {{ number_format($account['initial_debit'] ?? 0, 2) }} | {{ number_format($account['initial_credit'] ?? 0, 2) }} | @php $initialBalance = $account['initial_balance'] ?? 0; @endphp {{ number_format($initialBalance, 2) }} | {{ number_format($account['period_debit'] ?? 0, 2) }} | {{ number_format($account['period_credit'] ?? 0, 2) }} | @php $periodBalance = $account['period_balance'] ?? 0; @endphp {{ number_format($periodBalance, 2) }} | @php $finalBalance = $account['final_balance'] ?? 0; @endphp {{ number_format($finalBalance, 2) }} |
| {{ __('Date') }} | {{ __('Constraint') }} | {{ __('Constraint Number') }} | {{ __('Cost Center') }} | {{ __('Debit') }} | {{ __('Credit') }} | {{ __('Balance') }} | {{ __('Currency') }} | @if(!$ShowByDefault){{ __('Transfer Rate') }} | @endif{{ __('Actions') }} |
|---|---|---|---|---|---|---|---|---|---|
| {{ $transaction['date'] ?? '-' }} | {{ $transaction['constraint_name'] ?? '-' }} | {{ $transaction['number_doc'] ?? '-' }} | {{ $transaction['cost_center_name'] ?? '-' }} | {{ number_format($transaction['debit'] ?? 0, 2) }} | {{ number_format($transaction['credit'] ?? 0, 2) }} | @php $runningBalance = $transaction['running_balance'] ?? 0; @endphp {{ number_format($runningBalance, 2) }} | {{ $transaction['currency_name'] ?? '-' }} | @if(!$ShowByDefault){{ number_format($transaction['transfer_rate'] ?? 0, 2) }} | @endif... |
{{ __('No transactions available for this account') }}
{{ __('No data available to display') }}