{{ trans('general.date') }} | {{ trans('general.description') }} | {{ trans_choice('general.contacts', 1) }} | {{ trans('reconciliations.deposit') }} | {{ trans('reconciliations.withdrawal') }} | {{ trans('general.clear') }} | ||
---|---|---|---|---|---|---|---|
|
{{ $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 = $reconciliation->transactions[$name];
}
@endphp
|
{{ trans('reconciliations.opening_balance') }}: |
|
---|---|
{{ trans('reconciliations.closing_balance') }}: |
|
{{ trans('reconciliations.cleared_amount') }}: |
|
{{ trans('general.difference') }} |
|