{{ $this->form }}
Aplicar filtros
@if ($this->account)
Cuenta
{{ $this->account->display_label }}
Saldo en libros
${{ number_format((float) $this->account->current_balance, 2, ',', '.') }}
Saldo conciliado
${{ number_format((float) $this->account->reconciled_balance, 2, ',', '.') }}
@endif
@forelse ($this->movements as $m) @empty @endforelse
Fecha Tipo Concepto Debe Haber Conc.
{{ $m->date?->format('d/m/Y') }} {{ $m->type }} {{ $m->concept }} {{ $m->direction === 'debit' ? '$'.number_format((float) $m->amount, 2, ',', '.') : '' }} {{ $m->direction === 'credit' ? '$'.number_format((float) $m->amount, 2, ',', '.') : '' }} {{ $m->reconciled ? 'Sí' : 'No' }}
Sin movimientos.