{{ trans('general.title.edit', ['type' => trans_choice('general.reconciliations', 1)]) }}

{{ trans_choice('general.transactions', 2) }}

{{ trans('general.date') }} {{ trans('general.description') }} {{ trans_choice('general.contacts', 1) }} {{ trans('reconciliations.deposit') }} {{ trans('reconciliations.withdrawal') }} {{ trans('general.clear') }} @foreach($transactions as $item) {{ $item->description }} {{ $item->contact->name }} @if ($item->isIncome()) @else @endif @php $type = $item->isIncome() ? 'income' : 'expense'; $name = $type . '_' . $item->id; $checked = $item->reconciled; if (! $reconciliation->reconciled && array_key_exists($name, $reconciliation->transactions)) { $checked = (empty($reconciliation->transactions[$name]) || $reconciliation->transactions[$name] === 'false') ? 0 : 1; } @endphp @endforeach @if ($transactions->count())
{{ trans('reconciliations.opening_balance') }}:
{{ trans('reconciliations.closing_balance') }}:
{{ trans('reconciliations.cleared_amount') }}:
{{ trans('general.difference') }}
@endif @can('update-banking-reconciliations')
@if ($transactions->count())
{{ trans('general.cancel') }} {{ trans('general.save') }}
{{ trans('reconciliations.reconcile') }}
{{ trans('reconciliations.reconcile') }}
@else
{{ trans('general.no_records') }}
@endif
@endcan