REPORTE M.SAT

{{ $mes }} / {{ $anio }}

@if($cliente)

Información del Cliente

Cliente: {{ $cliente->nombre ?? 'N/A' }}

RFC: {{ $cliente->rfc ?? 'N/A' }}

@if(isset($cliente->razon_social))

Razón Social: {{ $cliente->razon_social }}

@endif
@endif @if($msat)
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, '.', ',') }}
@if($msat->observaciones)

Observaciones:

{{ $msat->observaciones }}

@endif @else

No hay datos registrados para este período

{{ $mes }} / {{ $anio }}

@endif