{{ $account['tree_account_title'] ?? '-' }}
{{ $isRtl ? 'الرقم التسلسلي' : 'Serial Number' }}: {{ $account['tree_account_serial_number'] ?? '-' }}| {{ $isRtl ? 'الرصيد الافتتاحي' : 'Opening Balance' }} | {{ $isRtl ? 'حركات الفترة' : 'Period Movements' }} | {{ $isRtl ? 'الرصيد النهائي' : 'Final Balance' }} | ||||
|---|---|---|---|---|---|---|
| {{ $isRtl ? 'مدين' : 'Debit' }} | {{ $isRtl ? 'دائن' : 'Credit' }} | {{ $isRtl ? 'الرصيد' : 'Balance' }} | {{ $isRtl ? 'مدين' : 'Debit' }} | {{ $isRtl ? 'دائن' : 'Credit' }} | {{ $isRtl ? 'الرصيد' : '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) }} |
| {{ $isRtl ? 'التاريخ' : 'Date' }} | {{ $isRtl ? 'القيد' : 'Constraint' }} | {{ $isRtl ? 'رقم القيد' : 'Constraint Number' }} | {{ $isRtl ? 'مركز التكلفة' : 'Cost Center' }} | {{ $isRtl ? 'مدين' : 'Debit' }} | {{ $isRtl ? 'دائن' : 'Credit' }} | {{ $isRtl ? 'الرصيد' : 'Balance' }} | {{ $isRtl ? 'العملة' : 'Currency' }} | @if(!$ShowByDefault){{ $isRtl ? 'سعر التحويل' : 'Transfer Rate' }} | @endif
|---|---|---|---|---|---|---|---|---|
| {{ $transaction['date'] ?? '-' }} | {{ $transaction['constraint_name'] ?? '-' }} | {{ $transaction['number_doc'] ?? '-' }} | {{ $transaction['cost_center_name'] ?? '-' }} |
{{ number_format($transaction['debit'] ?? 0, 2) }}
@if(isset($transaction['debit_other']) && $transaction['debit_other'] > 0 && $transaction['debit'] != $transaction['debit_other'])
({{ number_format($transaction['debit_other'], 2) }} {{ $transaction['currency_symbol'] ?? '' }}) {{ $isRtl ? 'سعر الصرف:' : 'Rate:' }} {{ $transaction['rate'] ?? $transaction['transfer_rate'] ?? 1 }} @endif |
{{ number_format($transaction['credit'] ?? 0, 2) }}
@if(isset($transaction['creditor_other']) && $transaction['creditor_other'] > 0 && $transaction['credit'] != $transaction['creditor_other'])
({{ number_format($transaction['creditor_other'], 2) }} {{ $transaction['currency_symbol'] ?? '' }}) {{ $isRtl ? 'سعر الصرف:' : 'Rate:' }} {{ $transaction['rate'] ?? $transaction['transfer_rate'] ?? 1 }} @endif |
@php $runningBalance = $transaction['running_balance'] ?? 0; @endphp {{ number_format($runningBalance, 2) }} | {{ $transaction['currency_name'] ?? '-' }} | @if(!$ShowByDefault){{ number_format($transaction['transfer_rate'] ?? $transaction['rate'] ?? 0, 2) }} | @endif
{{ $isRtl ? 'لا توجد معاملات لهذا الحساب' : 'No transactions available for this account' }}
{{ $isRtl ? 'لا توجد بيانات للعرض' : 'No data available to display' }}