{{ __('Ledger Report') }}
{{ __('Account') }}: {{ $subject->formattedName() }}
تاریخ گزارش: {{ formatDate(now()) }}
صفحه: {{ formatNumber($current) }} از {{ formatNumber($pagecount) }}
{{ __('Document') }} | {{ __('Date') }} | {{ __('Description') }} | {{ __('Debit') }} | {{ __('Credit') }} | {{ __('Balance') }} |
---|
{{ __('No transactions available.') }}
{{ __('Ledger Report') }}
{{ __('Account') }}: {{ $subject->formattedName() }}
تاریخ گزارش: {{ formatDate(now()) }}
صفحه: {{ formatNumber($current) }} از {{ formatNumber($pagecount) }}
{{ __('Document') }} | {{ __('Date') }} | {{ __('Description') }} | {{ __('Debit') }} | {{ __('Credit') }} | {{ __('Balance') }} |
---|---|---|---|---|---|
{{ formatNumber($transaction->document?->number) }} | {{ formatMinimalDate($transaction->document?->date) }} | {{ $transaction->desc }} | @php $debit = $transaction->value < 0 ? -1 * $transaction->value : 0; $credit = $transaction->value > 0 ? $transaction->value : 0; $balance += $credit - $debit; @endphp{{ formatNumber($debit) }} | {{ formatNumber($credit) }} | {{ formatNumber($balance) }} |