{{ __('accounts::filament/resources/invoice.table.columns.tax-excluded') }}
{{ money($subtotal, $currency?->name) }}
@if ($totalTax > 0)
{{ __('accounts::filament/resources/invoice.table.columns.tax') }}
{{ money($totalTax, $currency?->name) }}
@endif
@if ($rounding != 0)
{{ __('accounts::filament/resources/invoice.form.tabs.other-information.fieldset.accounting.fields.cash-rounding') }}
{{ money($rounding, $currency?->name) }}
@endif
{{ __('accounts::filament/resources/invoice.table.columns.total') }}
{{ money($grandTotal, $currency?->name) }}
@if ($reconciledPayments && ! empty($reconciledPayments['lines']))
@foreach ($reconciledPayments['lines'] ?? [] as $line)
{{ ($this->unReconcileAction())(['partial_id' => $line['partial_id']]) }}
{{ $line['ref'] }}
@if (isset($line['date']))
Paid on {{ $line['date']->format('M D, Y') }}
@endif
{{ $line['amount_currency'] }}
@endforeach
@endif
@if ($reconcilablePayments && $reconcilablePayments['outstanding'])
{{ $reconcilablePayments['title'] }}
@foreach ($reconcilablePayments['lines'] ?? [] as $line)
{{ ($this->reconcileAction())(['lineId' => $line['id']]) }}
{{ $line['journal_name'] }}
@if (isset($line['date']))
{{ $line['date'] }}
@endif
{{ money($line['amount'], $currency?->name) }}
@endforeach
@endif
@if ($record?->state === \Webkul\Account\Enums\MoveState::POSTED)
Amount Due
{{ money($record->amount_residual, $currency?->name) }}
@endif