|
{{ $claims->firstItem() + $index }}
|
{{ $claim->transaction_date->format('d-m-Y') }}
|
{{ $claim->supplier?->short_name ?? '-' }}
|
{{ $claim->reference_number ?? '-' }}
|
{{ $claim->description ?? '-' }}
|
{{ $claim->claim_month ?? '-' }}
|
{{ number_format($transactionOpeningBalance, 2) }}
|
{{ $debit > 0 ? number_format($debit, 2) : '-' }}
|
{{ $credit > 0 ? number_format($credit, 2) : '-' }}
|
{{ number_format($closingBalance, 2) }}
|
@if (!$claim->isPosted())
@can('claim-register-edit')
@endcan
@role('super-admin')
@endrole
@endif
|
@endforeach