@include('pdf.partials.styles-unified')
|
CUENTA
{{ $account->name }}
|
NÚMERO
{{ $account->number ?: 'N/A' }}
|
MONEDA
{{ optional($account->currency_type)->description ?: 'PEN' }}
|
MONTO INICIAL
S/ {{ number_format($account->beginning_balance, 2) }}
|
SALDO ACTUAL
S/ {{ number_format($account->current_balance, 2) }}
|
| N° | Cliente | Fecha | Documento | Moneda | Monto | Observación |
|---|---|---|---|---|---|---|
| {{ $loop->index + 1 }} | {{ optional(optional($row->venta)->cliente)->razon_social ?? 'N/A' }} | {{ \Carbon\Carbon::parse($row->fecha)->format('d/m/Y') }} | {{ optional($row->venta)->serie_venta ?? 'N/A' }} | {{ 'PEN' }} | {{ number_format($row->monto, 2) }} | {{ $row->comentario ?? '-' }} |
| No hay movimientos registrados | ||||||
| N° | Origen | Destino | Fecha | Moneda | Monto | Observación | Tipo |
|---|---|---|---|---|---|---|---|
| {{ $loop->index + 1 }} | {{ optional($row->account_origen)->name ?? 'N/A' }} | {{ optional($row->account_destino)->name ?? 'N/A' }} | {{ \Carbon\Carbon::parse($row->date_of_issue)->format('d/m/Y') }} | {{ optional($row->currency_type)->description ?? 'PEN' }} | {{ number_format($row->total, 2) }} | {{ $row->description ?? '-' }} | @if ($row->account_destino_id == $account->id) INGRESO @else SALIDA @endif |
| No hay transferencias registradas | |||||||