ESTADO DE CUENTAS

Desde: {{ $desde }}    Hasta: {{ $hasta }}
{{-- ========================================================= --}} {{-- ======================== ACTIVOS ========================= --}} {{-- ========================================================= --}}

ACTIVOS

@include('admin.pdf.partials.tabla-cuentas', [ 'lista' => $activos, 'totalLabel' => 'TOTAL ACTIVOS', 'totalValue' => $totalActivos, ])
{{-- ========================================================= --}} {{-- ======================= PASIVOS ========================== --}} {{-- ========================================================= --}}

PASIVOS

@include('admin.pdf.partials.tabla-cuentas', [ 'lista' => $pasivos, 'totalLabel' => 'TOTAL PASIVOS', 'totalValue' => $totalPasivos, ])
{{-- ========================================================= --}} {{-- ==================== PATRIMONIO ========================== --}} {{-- ========================================================= --}}

PATRIMONIO

@include('admin.pdf.partials.tabla-cuentas', [ 'lista' => $patrimonio, 'totalLabel' => 'TOTAL PATRIMONIO', 'totalValue' => $totalPatrimonio, ])
{{-- ========================================================= --}} {{-- ======================== VENTAS =========================== --}} {{-- ========================================================= --}}

VENTAS - INGRESOS

@include('admin.pdf.partials.tabla-cuentas', [ 'lista' => $ventas, 'totalLabel' => 'TOTAL INGRESOS', 'totalValue' => $totalVentas, ])
{{-- ========================================================= --}} {{-- ======================== GASTOS =========================== --}} {{-- ========================================================= --}}

GASTOS

@include('admin.pdf.partials.tabla-cuentas', [ 'lista' => $gastos, 'totalLabel' => 'TOTAL GASTOS', 'totalValue' => $totalGastos, ])
{{-- ========================================================= --}} {{-- ======================== COSTOS =========================== --}} {{-- ========================================================= --}}

COSTOS DE VENTA

@include('admin.pdf.partials.tabla-cuentas', [ 'lista' => $costos, 'totalLabel' => 'TOTAL COSTOS', 'totalValue' => $totalCostos, ])
{{-- ========================================================= --}} {{-- ================ RESULTADO DEL PERIODO =================== --}} {{-- ========================================================= --}}

RESULTADO DEL PERIODO

Ingresos del periodo {{ number_format($ingresosPeriodo, 0, ',', '.') }}
Costos del periodo {{ number_format($costosVentaPeriodo, 0, ',', '.') }}
Gastos del periodo {{ number_format($gastosPeriodo, 0, ',', '.') }}
RESULTADO NETO {{ number_format($resultadoPeriodo, 0, ',', '.') }}