{{-- DISPONIBILIDADES INICIALES --}}
| DISPONIBILIDADES INICIALES |
${{ number_format($saldo_inicial, 2) }} |
${{ number_format($saldo_inicial_ant, 2) }} |
| Saldo Inicial |
${{ number_format($saldo_inicial, 2) }} |
${{ number_format($saldo_inicial_ant, 2) }} |
{{-- RESULTADO OPERACIONAL NETO --}}
| RESULTADO OPERACIONAL NETO |
${{ number_format($data['resultado_operacional_neto'], 2) }} |
${{ number_format($res_oper_ant, 2) }} |
{{-- (+) FUENTES OPERACIONALES --}}
| (+) FUENTES
OPERACIONALES |
${{ number_format($total_fuentes_act, 2) }} |
${{ number_format($total_fuentes_ant, 2) }} |
@foreach ($fuentes as $item)
| {{ $item['nombre_cuenta'] }} |
{{ number_format($item['saldo_inicial'], 2) }} |
{{ number_format($item['saldo_anterior'], 2) }} |
@endforeach
{{-- (-) USOS OPERACIONALES --}}
| (-) USOS
OPERACIONALES |
${{ number_format($total_usos_act, 2) }} |
${{ number_format($total_usos_ant, 2) }} |
@foreach ($usos as $item)
| {{ $item['nombre_cuenta'] }} |
{{ number_format($item['saldo_inicial'], 2) }} |
{{ number_format($item['saldo_anterior'], 2) }} |
@endforeach
{{-- NO NO OPERACIONAL NETO --}}
| RESULTADO NO OPERACIONAL NETO |
${{ number_format($data['resultado_no_operacional_neto'], 2) }} |
${{ number_format($res_no_oper_ant, 2) }} |
{{-- (+) FUENTES OPERACIONALES --}}
| (+) FUENTES NO
OPERACIONALES |
${{ number_format($total_fuentes_noop_act, 2) }} |
${{ number_format($total_fuentes_noop_ant, 2) }} |
@foreach ($fuentes_no_op as $item)
| {{ $item['nombre_cuenta'] }} |
{{ number_format($item['saldo_inicial'], 2) }} |
{{ number_format($item['saldo_anterior'], 2) }} |
@endforeach
{{-- (-) USOS OPERACIONALES --}}
| (-) USOS NO
OPERACIONALES |
${{ number_format($total_usos_noop_act, 2) }} |
${{ number_format($total_usos_noop_ant, 2) }} |
@foreach ($usos_no_op as $item)
| {{ $item['nombre_cuenta'] }} |
{{ number_format($item['saldo_inicial'], 2) }} |
{{ number_format($item['saldo_anterior'], 2) }} |
@endforeach
{{-- DISPONIBILIDADES FINALES --}}
| DISPONIBILIDADES FINALES AL {{ $fecha_hasta }} |
${{ number_format($saldo_final_act, 2) }} |
${{ number_format($saldo_final_ant, 2) }} |