{{ $currentSubject->formattedCode() }} - {{ $currentSubject->name }}
| {{ __('Date') }} | {{ __('Doc Number') }} | {{ __('Subject Code') }} | {{ __('Subject') }} | {{ __('Description') }} | {{ __('Debit') }} | {{ __('Credit') }} | {{ __('Balance') }} | {{ __('Action') }} | @if ($openingBalance != 0)
|---|---|---|---|---|---|---|---|---|
| {{ __('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') }} |