{{ $this->form }}
Aplicar filtros
@forelse ($this->entries as $entry)
{{ $entry->number }} {{ $entry->date->format('d/m/Y') }} · {{ ucfirst($entry->source) }} @if($entry->reference) · Ref: {{ $entry->reference }} @endif
{{ $entry->status }}
@if($entry->description)
{{ $entry->description }}
@endif @foreach($entry->lines as $line) @endforeach
Cuenta Detalle Debe Haber
{{ $line->account?->display_label }} {{ $line->description }} @if((float)$line->debit > 0) ${{ number_format((float)$line->debit, 2, ',', '.') }} @endif @if((float)$line->credit > 0) ${{ number_format((float)$line->credit, 2, ',', '.') }} @endif
Totales ${{ number_format((float)$entry->total_debit, 2, ',', '.') }} ${{ number_format((float)$entry->total_credit, 2, ',', '.') }}
@empty
Sin asientos en el período seleccionado.
@endforelse