{{ __('Transactions') }} @if ($currentSubject) - {{ $currentSubject->name }} ({{ $currentSubject->formattedCode() }}) @endif

@if ($currentSubject)

{{ __('Filtered by Subject') }}

{{ $currentSubject->formattedCode() }} - {{ $currentSubject->name }}

{{ __('Clear Filter') }}
@endif
@if ($openingBalance != 0) @endif @foreach ($transactions as $transaction) @endforeach
{{ __('Date') }} {{ __('Doc Number') }} {{ __('Subject Code') }} {{ __('Subject') }} {{ __('Description') }} {{ __('Debit') }} {{ __('Credit') }} {{ __('Balance') }} {{ __('Action') }}
{{ __('Opening Balance') }} {{ formatNumber(abs($openingBalance)) }} {{ $openingBalance >= 0 ? __('Cre') : __('Deb') }}
{{ formatDate($transaction->document->date) }} {{ formatDocumentNumber($transaction->document->number) }} {{ $transaction->subject?->formattedCode() }} {{ $transaction->subject?->name }} {{ $transaction->desc }} {{ $transaction->debit }} {{ $transaction->credit }} {{ formatNumber(abs($transaction->balance)) }} {{ $transaction->balance >= 0 ? __('Cre') : __('Deb') }} {{ __('View') }}
{{ $transactions->appends(request()->query())->links() }}