|
|
|
|
|
|
|
{{ __('Expense %') }}
|
@php
$order = 1 ;
@endphp
@foreach($yearsWithItsMonths as $year=>$monthsForThisYearArray)
@php
$currentVal = $directExpense ? $directExpense->getPayloadAtYear($year) : 0;
$currentTotal[$year]=isset($currentTotal[$year]) ? $currentTotal[$year] + $currentVal : $currentVal;
@endphp
|
@php
$order = $order +1 ;
@endphp
@endforeach
@endfor