Cliente: {{ $cliente->nombre ?? 'N/A' }}
RFC: {{ $cliente->rfc ?? 'N/A' }}
@if(isset($cliente->razon_social))Razón Social: {{ $cliente->razon_social }}
@endif| CONCEPTO | MONTO |
|---|---|
| Ingresos | $ {{ number_format($msat->ingreso, 2, '.', ',') }} |
| Gastos | $ {{ number_format($msat->gastos, 2, '.', ',') }} |
| ISR (Impuesto Sobre la Renta) | $ {{ number_format($msat->isr, 2, '.', ',') }} |
| IVA (Impuesto al Valor Agregado) | $ {{ number_format($msat->iva, 2, '.', ',') }} |
| TOTAL NETO | $ {{ number_format($msat->ingreso - $msat->gastos - $msat->isr - $msat->iva, 2, '.', ',') }} |
{{ $msat->observaciones }}
{{ $mes }} / {{ $anio }}