@if(session()->has('error')) @endif @if(session()->has('success')) @endif @if(session()->has('message')) @endif

Ingresos Totales

Ingresos totales por concepto

Filtros
@if(count($ingresos) > 0)

Total Ingresos

Total Transacciones

{{ $totales['total_transacciones'] }}

Ingresos por Concepto
@foreach($ingresos as $ingreso) @endforeach
Concepto Cantidad Total Porcentaje
{{ $ingreso->concepto }} {{ $ingreso->cantidad }} @php $porcentaje = $totales['total_ingresos'] > 0 ? ($ingreso->total / $totales['total_ingresos']) * 100 : 0; @endphp
{{ number_format($porcentaje, 1) }}%
Total General {{ $ingresos->sum('cantidad') }} 100%
@else
No hay datos para mostrar

Configure los filtros y genere el reporte

@endif