@extends('layouts.app') @section('content')
| Efectivo en Caja | ${{ number_format($efectivoCaja, 2) }} |
| Cuentas por Cobrar | ${{ number_format($cuentasPorCobrar, 2) }} |
| Equipos e Instalaciones | ${{ number_format($equipos, 2) }} |
| Total Activos | ${{ number_format($totalActivos, 2) }} |
| Cuentas por Pagar | ${{ number_format($cuentasPorPagar, 2) }} |
| Préstamos | ${{ number_format($prestamos, 2) }} |
| Total Pasivos | ${{ number_format($totalPasivos, 2) }} |
| Capital Social | ${{ number_format($capitalSocial, 2) }} |
| Utilidades Retenidas | ${{ number_format($utilidadesRetenidas, 2) }} |
| Total Patrimonio | ${{ number_format($totalPatrimonio, 2) }} |
| INGRESOS | |
| Pagos de Servicios de Internet | ${{ number_format($ingresosPagos, 2) }} |
| Otros Ingresos | ${{ number_format($ingresosOtros, 2) }} |
| Total Ingresos | ${{ number_format($totalIngresos, 2) }} |
| GASTOS | |
| Gastos Operativos | ${{ number_format($gastosOperativos, 2) }} |
| Gastos Administrativos | ${{ number_format($gastosAdministrativos, 2) }} |
| Gastos de Mantenimiento | ${{ number_format($gastosMantenimiento, 2) }} |
| Total Gastos | ${{ number_format($totalGastos, 2) }} |
| UTILIDAD NETA | ${{ number_format($utilidadNeta, 2) }} |