Moon Traders
Opening Customer Balance Report
@if ($selectedSupplier)
{{ $selectedSupplier->supplier_name }}
@endif
| Sr# | Date | Salesman | Customer | Opening Balance | Status | @canany(['opening-customer-balance-edit', 'opening-customer-balance-delete', 'opening-customer-balance-post'])Actions | @endcanany
|---|---|---|---|---|---|---|
| {{ $transactions->firstItem() + $index }} | {{ $transaction->transaction_date->format('d.m.Y') }} | {{ $transaction->account->employee->name ?? '-' }} ({{ $transaction->account->employee->employee_code ?? '' }}) | {{ $transaction->account->customer->customer_name ?? '-' }} ({{ $transaction->account->account_number ?? '-' }}) @if ($transaction->account->customer->address) — {{ $transaction->account->customer->address }} @endif | {{ number_format($transaction->debit, 2) }} | @if ($transaction->isPosted()) @else Draft @endif | @canany(['opening-customer-balance-edit', 'opening-customer-balance-delete', 'opening-customer-balance-post'])
@if (!$transaction->isPosted())
@can('opening-customer-balance-edit')
@endcan
@can('opening-customer-balance-post')
@endcan
@can('opening-customer-balance-delete')
@endcan
@else
✓
@endif
|
@endcanany
|
Please select filters to view data Choose a supplier, salesman, or customer from the filters above. |
||||||
| No opening customer balance entries found for the selected filters. | ||||||
| Total ({{ $transactions->total() }} entries) | {{ number_format($totalDebit, 2) }} | |||||
Are you sure you want to delete this opening balance? This action cannot be undone.
Are you sure you want to post this opening balance to the General Ledger? This action cannot be reversed.