{{-- div for Company --}} {{$cashFlowStatementLoadTableArr['company']->name}}
{{$cashFlowStatementLoadTableArr['company']->address}}
Statement Of Cash Flows
@if ($searchType == 1) Fiscal Year:  {{ $cashFlowStatementLoadTableArr['fiscalYearsSelected1']->name }} @elseif ($searchType == 2) As on Current Year Upto:  {{date('d F, Y',strtotime($cashFlowStatementLoadTableArr['dateTo']))}} @endif
{{-- div for Reporting Info --}}
Project Name:     {{$cashFlowStatementLoadTableArr['projectName']}} Branch Name:     {{$cashFlowStatementLoadTableArr['branchName']}}
Project Type:       {{$cashFlowStatementLoadTableArr['projectType']}} Print Date:       {{\Carbon\Carbon::now()->format('d-m-Y g:i A')}}

@php // current year $subTotalCYCashItemsExpenses = 0; $subTotalCYNonCashItemsIncome = 0; $subTotalCYNetCashOperating = 0; $subTotalCYNetCashInvesting = 0; $subTotalCYNetCashFinancial = 0; // previous year $subTotalPYCashItemsExpenses = 0; $subTotalPYNonCashItemsIncome = 0; $subTotalPYNetCashOperating = 0; $subTotalPYNetCashInvesting = 0; $subTotalPYNetCashFinancial = 0; // this month $subTotalThisMonthCashItemsExpenses = 0; $subTotalThisMonthNonCashItemsIncome = 0; $subTotalThisMonthNetCashOperating = 0; $subTotalThisMonthNetCashInvesting = 0; $subTotalThisMonthNetCashFinancial = 0; // cumulative $subTotalCumulativeCashItemsExpenses = 0; $subTotalCumulativeNonCashItemsIncome = 0; $subTotalCumulativeNetCashOperating = 0; $subTotalCumulativeNetCashInvesting = 0; $subTotalCumulativeNetCashFinancial = 0; @endphp @if ($searchType == 1) @elseif ($searchType == 2) @endif {{-- surplus rows --}} @if ($searchType == 1) @if ($roundUp == 1) @else @endif @elseif ($searchType == 2) @if ($roundUp == 1) @else @endif @endif {{-- non cash items expenses rows --}} @foreach ($nonCashItemsExpensesBalance as $key => $item) @if ($searchType == 1) @if ($roundUp == 1) @else @endif @php $subTotalCYCashItemsExpenses += $item['cyBalance']; $subTotalPYCashItemsExpenses += $item['pyBalance']; @endphp @elseif ($searchType == 2) @if ($roundUp == 1) @else @endif @php $subTotalThisMonthCashItemsExpenses += $item['thisMonthBalance']; $subTotalCYCashItemsExpenses += $item['cyBalance']; $subTotalCumulativeCashItemsExpenses += $item['cumulativeBalance']; @endphp @endif @endforeach @if ($searchType == 1) @if ($roundUp == 1) @else @endif @elseif ($searchType == 2) @if ($roundUp == 1) @else @endif @endif {{-- non cash items income rows --}} @if ($searchType == 1) @if ($roundUp == 1) @else @if ($nonCashItemsIncomeBalance['pyBalance'] == 0) @else @endif @if ($nonCashItemsIncomeBalance['cyBalance'] == 0) @else @endif @endif @php $subTotalCYNonCashItemsIncome += $nonCashItemsIncomeBalance['cyBalance']; $subTotalPYNonCashItemsIncome += $nonCashItemsIncomeBalance['pyBalance']; @endphp @elseif ($searchType == 2) @if ($roundUp == 1) @else @if ($nonCashItemsIncomeBalance['thisMonthBalance'] == 0) @else @endif @if ($nonCashItemsIncomeBalance['cyBalance'] == 0) @else @endif @if ($nonCashItemsIncomeBalance['cumulativeBalance'] == 0) @else @endif @endif @php $subTotalThisMonthNonCashItemsIncome += $nonCashItemsIncomeBalance['thisMonthBalance']; $subTotalCYNonCashItemsIncome += $nonCashItemsIncomeBalance['cyBalance']; $subTotalCumulativeNonCashItemsIncome += $nonCashItemsIncomeBalance['cumulativeBalance']; @endphp @endif @if ($searchType == 1) @if ($roundUp == 1) @else @if ($subTotalPYNonCashItemsIncome == 0) @else @endif @if ($subTotalCYNonCashItemsIncome == 0) @else @endif @endif @elseif ($searchType == 2) @if ($roundUp == 1) @else @if ($subTotalThisMonthNonCashItemsIncome == 0) @else @endif @if ($subTotalCYNonCashItemsIncome == 0) @else @endif @if ($subTotalCumulativeNonCashItemsIncome == 0) @else @endif @endif @endif {{-- net cash operating activities rows --}} @foreach ($netCashOperatingActivitiesBalance as $key => $item) @if ($searchType == 1) @if ($roundUp == 1) @else @endif @php $subTotalCYNetCashOperating += $item['cyBalance']; $subTotalPYNetCashOperating += $item['pyBalance']; @endphp @elseif ($searchType == 2) @if ($roundUp == 1) @else @endif @php $subTotalThisMonthNetCashOperating += $item['thisMonthBalance']; $subTotalCYNetCashOperating += $item['cyBalance']; $subTotalCumulativeNetCashOperating += $item['cumulativeBalance']; @endphp @endif @endforeach @php $totalCYCashOperating = $cySurplusAmount + $subTotalCYCashItemsExpenses - $subTotalCYNonCashItemsIncome + $subTotalCYNetCashOperating; $totalPYCashOperating = $pySurplusAmount + $subTotalPYCashItemsExpenses - $subTotalPYNonCashItemsIncome + $subTotalPYNetCashOperating; $totalThisMonthCashOperating = $thisMonthSurplusAmount + $subTotalThisMonthCashItemsExpenses - $subTotalThisMonthNonCashItemsIncome + $subTotalThisMonthNetCashOperating; $totalCumulativeCashOperating = $cumulativeSurplusAmount + $subTotalCumulativeCashItemsExpenses - $subTotalCumulativeNonCashItemsIncome + $subTotalCumulativeNetCashOperating; @endphp @if ($searchType == 1) @if ($roundUp == 1) @else @endif @elseif ($searchType == 2) @if ($roundUp == 1) @else @endif @endif {{-- end of section A --}} {{-- net cash invessting activities rows --}} @foreach ($netCashInvestingActivitiesBalance as $key => $item) @if ($searchType == 1) @if ($roundUp == 1) @else @endif @php $subTotalCYNetCashInvesting += $item['cyBalance']; $subTotalPYNetCashInvesting += $item['pyBalance']; @endphp @elseif ($searchType == 2) @if ($roundUp == 1) @else @endif @php $subTotalThisMonthNetCashInvesting += $item['thisMonthBalance']; $subTotalCYNetCashInvesting += $item['cyBalance']; $subTotalCumulativeNetCashInvesting += $item['cumulativeBalance']; @endphp @endif @endforeach @if ($searchType == 1) @if ($roundUp == 1) @else @endif @elseif ($searchType == 2) @if ($roundUp == 1) @else @endif @endif {{-- net cash financing activities rows --}} @foreach ($netCashFinancingActivitiesBalance as $key => $item) @if ($searchType == 1) @if ($roundUp == 1) @else @endif @php $subTotalCYNetCashFinancial += $item['cyBalance']; $subTotalPYNetCashFinancial += $item['pyBalance']; @endphp @elseif ($searchType == 2) @if ($roundUp == 1) @else @endif @php $subTotalThisMonthNetCashFinancial += $item['thisMonthBalance']; $subTotalCYNetCashFinancial += $item['cyBalance']; $subTotalCumulativeNetCashFinancial += $item['cumulativeBalance']; @endphp @endif @endforeach {{-- net cash financing activities rows --}} @if ($searchType == 1) @if ($roundUp == 1) @else @endif @elseif ($searchType == 2) @if ($roundUp == 1) @else @endif @endif @php $cyNetCashIncreaseDecrease = $totalCYCashOperating + $subTotalCYNetCashInvesting + $subTotalCYNetCashFinancial; $pyNetCashIncreaseDecrease = $totalPYCashOperating + $subTotalPYNetCashInvesting + $subTotalPYNetCashFinancial; $thisMonthNetCashIncreaseDecrease = $totalThisMonthCashOperating + $subTotalThisMonthNetCashInvesting + $subTotalThisMonthNetCashFinancial; $cumulativeNetCashIncreaseDecrease = $totalCumulativeCashOperating + $subTotalCumulativeNetCashInvesting + $subTotalCumulativeNetCashFinancial; @endphp {{-- net cash increase/decrease --}} @if ($searchType == 1) @if ($roundUp == 1) @else @endif @elseif ($searchType == 2) @if ($roundUp == 1) @else @endif @endif {{-- net cash and bank --}} @foreach ($netCashAndBankBalance as $key => $item) @if ($searchType == 1) @if ($roundUp == 1) @else @endif @php $netCashAndBankCurrentYear = $item['cyBalance']; $netCashAndBankPreviousYear = $item['pyBalance']; @endphp @elseif ($searchType == 2) @if ($roundUp == 1) @else @endif @php $netCashAndBankCurrentMonth = $item['thisMonthBalance']; $netCashAndBankCurrentYear = $item['cyBalance']; $netCashAndBankCumulative = $item['cumulativeBalance']; @endphp @endif @endforeach @if ($searchType == 1) @if ($roundUp == 1) @else @endif @elseif ($searchType == 2) @if ($roundUp == 1) @else @endif @endif
ParticularPrevious Year
({{$cashFlowStatementLoadTableArr['fiscalYearsSelected2']->name}})
Current Year
({{$cashFlowStatementLoadTableArr['fiscalYearsSelected1']->name}})
Current Month Current Year
({{$cashFlowStatementLoadTableArr['fiscalYearsSelected1']->name}})
Cumulative
A. Cash flows from operating activities
Surplus{{ App\Service\EasyCode::negativeReplace(round($pySurplusAmount)) }} {{ App\Service\EasyCode::negativeReplace(round($cySurplusAmount)) }}{{ App\Service\EasyCode::negativeReplace($pySurplusAmount) }} {{ App\Service\EasyCode::negativeReplace($cySurplusAmount) }}
Surplus{{ App\Service\EasyCode::negativeReplace(round($thisMonthSurplusAmount)) }} {{ App\Service\EasyCode::negativeReplace(round($cySurplusAmount)) }} {{ App\Service\EasyCode::negativeReplace(round($cumulativeSurplusAmount)) }}{{ App\Service\EasyCode::negativeReplace($thisMonthSurplusAmount) }} {{ App\Service\EasyCode::negativeReplace($cySurplusAmount) }} {{ App\Service\EasyCode::negativeReplace($cumulativeSurplusAmount) }}
Add: Amount considered as non cash items Expenses
{{ $item['name'].' ['.$item['code'].']' }}{{ App\Service\EasyCode::negativeReplace(round($item['pyBalance'])) }} {{ App\Service\EasyCode::negativeReplace(round($item['cyBalance'])) }}{{ App\Service\EasyCode::negativeReplace($item['pyBalance']) }} {{ App\Service\EasyCode::negativeReplace($item['cyBalance']) }}
{{ $item['name'].' ['.$item['code'].']' }}{{ App\Service\EasyCode::negativeReplace(round($item['thisMonthBalance'])) }} {{ App\Service\EasyCode::negativeReplace(round($item['cyBalance'])) }} {{ App\Service\EasyCode::negativeReplace(round($item['cumulativeBalance'])) }}{{ App\Service\EasyCode::negativeReplace($item['thisMonthBalance']) }} {{ App\Service\EasyCode::negativeReplace($item['cyBalance']) }} {{ App\Service\EasyCode::negativeReplace($item['cumulativeBalance']) }}
Sub-total of non cash items expenses{{ App\Service\EasyCode::negativeReplace(round($subTotalPYCashItemsExpenses)) }} {{ App\Service\EasyCode::negativeReplace(round($subTotalCYCashItemsExpenses)) }}{{ App\Service\EasyCode::negativeReplace($subTotalPYCashItemsExpenses) }} {{ App\Service\EasyCode::negativeReplace($subTotalCYCashItemsExpenses) }}{{ App\Service\EasyCode::negativeReplace(round($subTotalThisMonthCashItemsExpenses)) }} {{ App\Service\EasyCode::negativeReplace(round($subTotalCYCashItemsExpenses)) }} {{ App\Service\EasyCode::negativeReplace(round($subTotalCumulativeCashItemsExpenses)) }}{{ App\Service\EasyCode::negativeReplace($subTotalThisMonthCashItemsExpenses) }} {{ App\Service\EasyCode::negativeReplace($subTotalCYCashItemsExpenses) }} {{ App\Service\EasyCode::negativeReplace($subTotalCumulativeCashItemsExpenses) }}
Less: Amount considered as non cash items income
{{ $nonCashItemsIncomeBalance['name'].' ['.$nonCashItemsIncomeBalance['code'].']' }}{{ App\Service\EasyCode::negativeReplace(round($nonCashItemsIncomeBalance['pyBalance'])) }} {{ App\Service\EasyCode::negativeReplace(round($nonCashItemsIncomeBalance['cyBalance'])) }}{{ App\Service\EasyCode::negativeReplace($nonCashItemsIncomeBalance['pyBalance']) }}({{ App\Service\EasyCode::negativeReplace($nonCashItemsIncomeBalance['pyBalance']) }}){{ App\Service\EasyCode::negativeReplace($nonCashItemsIncomeBalance['cyBalance']) }}({{ App\Service\EasyCode::negativeReplace($nonCashItemsIncomeBalance['cyBalance']) }})
{{ $nonCashItemsIncomeBalance['name'].' ['.$nonCashItemsIncomeBalance['code'].']' }}{{ App\Service\EasyCode::negativeReplace(round($nonCashItemsIncomeBalance['thisMonthBalance'])) }} {{ App\Service\EasyCode::negativeReplace(round($nonCashItemsIncomeBalance['cyBalance'])) }} {{ App\Service\EasyCode::negativeReplace(round($nonCashItemsIncomeBalance['cumulativeBalance'])) }}{{ App\Service\EasyCode::negativeReplace($nonCashItemsIncomeBalance['thisMonthBalance']) }}({{ App\Service\EasyCode::negativeReplace($nonCashItemsIncomeBalance['thisMonthBalance']) }}){{ App\Service\EasyCode::negativeReplace($nonCashItemsIncomeBalance['cyBalance']) }}({{ App\Service\EasyCode::negativeReplace($nonCashItemsIncomeBalance['cyBalance']) }}){{ App\Service\EasyCode::negativeReplace($nonCashItemsIncomeBalance['cumulativeBalance']) }}({{ App\Service\EasyCode::negativeReplace($nonCashItemsIncomeBalance['cumulativeBalance']) }})
Sub-total of non cash items income{{ App\Service\EasyCode::negativeReplace(round($subTotalPYNonCashItemsIncome)) }} {{ App\Service\EasyCode::negativeReplace(round($subTotalCYNonCashItemsIncome)) }}{{ App\Service\EasyCode::negativeReplace($subTotalPYNonCashItemsIncome) }}({{ App\Service\EasyCode::negativeReplace($subTotalPYNonCashItemsIncome) }}){{ App\Service\EasyCode::negativeReplace($subTotalCYNonCashItemsIncome) }}({{ App\Service\EasyCode::negativeReplace($subTotalCYNonCashItemsIncome) }}){{ App\Service\EasyCode::negativeReplace(round($subTotalThisMonthNonCashItemsIncome)) }} {{ App\Service\EasyCode::negativeReplace(round($subTotalCYNonCashItemsIncome)) }} {{ App\Service\EasyCode::negativeReplace(round($subTotalCumulativeNonCashItemsIncome)) }}{{ App\Service\EasyCode::negativeReplace($subTotalThisMonthNonCashItemsIncome) }}({{ App\Service\EasyCode::negativeReplace($subTotalThisMonthNonCashItemsIncome) }}){{ App\Service\EasyCode::negativeReplace($subTotalCYNonCashItemsIncome) }}({{ App\Service\EasyCode::negativeReplace($subTotalCYNonCashItemsIncome) }}){{ App\Service\EasyCode::negativeReplace($subTotalCumulativeNonCashItemsIncome) }}({{ App\Service\EasyCode::negativeReplace($subTotalCumulativeNonCashItemsIncome) }})
{{ $item['name'].' ['.$item['code'].']' }}{{ App\Service\EasyCode::negativeReplace(round($item['pyBalance'])) }} {{ App\Service\EasyCode::negativeReplace(round($item['cyBalance'])) }}{{ App\Service\EasyCode::negativeReplace($item['pyBalance']) }} {{ App\Service\EasyCode::negativeReplace($item['cyBalance']) }}
{{ $item['name'].' ['.$item['code'].']' }}{{ App\Service\EasyCode::negativeReplace(round($item['thisMonthBalance'])) }} {{ App\Service\EasyCode::negativeReplace(round($item['cyBalance'])) }} {{ App\Service\EasyCode::negativeReplace(round($item['cumulativeBalance'])) }}{{ App\Service\EasyCode::negativeReplace($item['thisMonthBalance']) }} {{ App\Service\EasyCode::negativeReplace($item['cyBalance']) }} {{ App\Service\EasyCode::negativeReplace($item['cumulativeBalance']) }}
Net cash used in Operating Activities{{ App\Service\EasyCode::negativeReplace(round($totalPYCashOperating)) }} {{ App\Service\EasyCode::negativeReplace(round($totalCYCashOperating)) }}{{ App\Service\EasyCode::negativeReplace($totalPYCashOperating) }} {{ App\Service\EasyCode::negativeReplace($totalCYCashOperating) }}{{ App\Service\EasyCode::negativeReplace(round($totalThisMonthCashOperating)) }} {{ App\Service\EasyCode::negativeReplace(round($totalCYCashOperating)) }} {{ App\Service\EasyCode::negativeReplace(round($totalCumulativeCashOperating)) }}{{ App\Service\EasyCode::negativeReplace($totalThisMonthCashOperating) }} {{ App\Service\EasyCode::negativeReplace($totalCYCashOperating) }} {{ App\Service\EasyCode::negativeReplace($totalCumulativeCashOperating) }}
B. Cash flows from Investing Activities
{{ $item['name'].' ['.$item['code'].']' }}{{ App\Service\EasyCode::negativeReplace(round($item['pyBalance'])) }} {{ App\Service\EasyCode::negativeReplace(round($item['cyBalance'])) }}{{ App\Service\EasyCode::negativeReplace($item['pyBalance']) }} {{ App\Service\EasyCode::negativeReplace($item['cyBalance']) }}
{{ $item['name'].' ['.$item['code'].']' }}{{ App\Service\EasyCode::negativeReplace(round($item['thisMonthBalance'])) }} {{ App\Service\EasyCode::negativeReplace(round($item['cyBalance'])) }} {{ App\Service\EasyCode::negativeReplace(round($item['cumulativeBalance'])) }}{{ App\Service\EasyCode::negativeReplace($item['thisMonthBalance']) }} {{ App\Service\EasyCode::negativeReplace($item['cyBalance']) }} {{ App\Service\EasyCode::negativeReplace($item['cumulativeBalance']) }}
Net cash used in Investing Activities{{ App\Service\EasyCode::negativeReplace(round($subTotalPYNetCashInvesting)) }} {{ App\Service\EasyCode::negativeReplace(round($subTotalCYNetCashInvesting)) }}{{ App\Service\EasyCode::negativeReplace($subTotalPYNetCashInvesting) }} {{ App\Service\EasyCode::negativeReplace($subTotalCYNetCashInvesting) }}{{ App\Service\EasyCode::negativeReplace(round($subTotalThisMonthNetCashInvesting)) }} {{ App\Service\EasyCode::negativeReplace(round($subTotalCYNetCashInvesting)) }} {{ App\Service\EasyCode::negativeReplace(round($subTotalCumulativeNetCashInvesting)) }}{{ App\Service\EasyCode::negativeReplace($subTotalThisMonthNetCashInvesting) }} {{ App\Service\EasyCode::negativeReplace($subTotalCYNetCashInvesting) }} {{ App\Service\EasyCode::negativeReplace($subTotalCumulativeNetCashInvesting) }}
C. Cash flows from Financing Activities
{{ $item['name'].' ['.$item['code'].']' }}{{ App\Service\EasyCode::negativeReplace(round($item['pyBalance'])) }} {{ App\Service\EasyCode::negativeReplace(round($item['cyBalance'])) }}{{ App\Service\EasyCode::negativeReplace($item['pyBalance']) }} {{ App\Service\EasyCode::negativeReplace($item['cyBalance']) }}
{{ $item['name'].' ['.$item['code'].']' }}{{ App\Service\EasyCode::negativeReplace(round($item['thisMonthBalance'])) }} {{ App\Service\EasyCode::negativeReplace(round($item['cyBalance'])) }} {{ App\Service\EasyCode::negativeReplace(round($item['cumulativeBalance'])) }}{{ App\Service\EasyCode::negativeReplace($item['thisMonthBalance']) }} {{ App\Service\EasyCode::negativeReplace($item['cyBalance']) }} {{ App\Service\EasyCode::negativeReplace($item['cumulativeBalance']) }}
Net cash used in Financing Activities{{ App\Service\EasyCode::negativeReplace(round($subTotalPYNetCashFinancial)) }} {{ App\Service\EasyCode::negativeReplace(round($subTotalCYNetCashFinancial)) }}{{ App\Service\EasyCode::negativeReplace($subTotalPYNetCashFinancial) }} {{ App\Service\EasyCode::negativeReplace($subTotalCYNetCashFinancial) }}{{ App\Service\EasyCode::negativeReplace(round($subTotalThisMonthNetCashFinancial)) }} {{ App\Service\EasyCode::negativeReplace(round($subTotalCYNetCashFinancial)) }} {{ App\Service\EasyCode::negativeReplace(round($subTotalCumulativeNetCashFinancial)) }}{{ App\Service\EasyCode::negativeReplace($subTotalThisMonthNetCashFinancial) }} {{ App\Service\EasyCode::negativeReplace($subTotalCYNetCashFinancial) }} {{ App\Service\EasyCode::negativeReplace($subTotalCumulativeNetCashFinancial) }}
D. Net cash increase/decrease (A+B+C){{ App\Service\EasyCode::negativeReplace(round($pyNetCashIncreaseDecrease)) }} {{ App\Service\EasyCode::negativeReplace(round($cyNetCashIncreaseDecrease)) }}{{ App\Service\EasyCode::negativeReplace($pyNetCashIncreaseDecrease) }} {{ App\Service\EasyCode::negativeReplace($cyNetCashIncreaseDecrease) }}{{ App\Service\EasyCode::negativeReplace(round($thisMonthNetCashIncreaseDecrease)) }} {{ App\Service\EasyCode::negativeReplace(round($cyNetCashIncreaseDecrease)) }} {{ App\Service\EasyCode::negativeReplace(round($cumulativeNetCashIncreaseDecrease)) }}{{ App\Service\EasyCode::negativeReplace($thisMonthNetCashIncreaseDecrease) }} {{ App\Service\EasyCode::negativeReplace($cyNetCashIncreaseDecrease) }} {{ App\Service\EasyCode::negativeReplace($cumulativeNetCashIncreaseDecrease) }}
Add. {{ $item['name'].' ['.$item['code'].']' }} at Beginning of the year{{ App\Service\EasyCode::negativeReplace(round($item['pyBalance'])) }} {{ App\Service\EasyCode::negativeReplace(round($item['cyBalance'])) }}{{ App\Service\EasyCode::negativeReplace($item['pyBalance']) }} {{ App\Service\EasyCode::negativeReplace($item['cyBalance']) }}
{{ $item['name'].' ['.$item['code'].']' }}{{ App\Service\EasyCode::negativeReplace(round($item['thisMonthBalance'])) }} {{ App\Service\EasyCode::negativeReplace(round($item['cyBalance'])) }} {{ App\Service\EasyCode::negativeReplace(round($item['cumulativeBalance'])) }}{{ App\Service\EasyCode::negativeReplace($item['thisMonthBalance']) }} {{ App\Service\EasyCode::negativeReplace($item['cyBalance']) }} {{ App\Service\EasyCode::negativeReplace($item['cumulativeBalance']) }}
Cash And Bank Balance at the end of the year{{ App\Service\EasyCode::negativeReplace(round($pyNetCashIncreaseDecrease + $netCashAndBankPreviousYear)) }} {{ App\Service\EasyCode::negativeReplace(round($cyNetCashIncreaseDecrease + $netCashAndBankCurrentYear)) }}{{ App\Service\EasyCode::negativeReplace($pyNetCashIncreaseDecrease + $netCashAndBankPreviousYear) }} {{ App\Service\EasyCode::negativeReplace($cyNetCashIncreaseDecrease + $netCashAndBankCurrentYear) }}{{ App\Service\EasyCode::negativeReplace(round($thisMonthNetCashIncreaseDecrease + $netCashAndBankCurrentMonth)) }} {{ App\Service\EasyCode::negativeReplace(round($cyNetCashIncreaseDecrease + $netCashAndBankCurrentYear)) }} {{ App\Service\EasyCode::negativeReplace(round($cumulativeNetCashIncreaseDecrease + $netCashAndBankCumulative)) }}{{ App\Service\EasyCode::negativeReplace($thisMonthNetCashIncreaseDecrease + $netCashAndBankCurrentMonth) }} {{ App\Service\EasyCode::negativeReplace($cyNetCashIncreaseDecrease + $netCashAndBankCurrentYear) }} {{ App\Service\EasyCode::negativeReplace($cumulativeNetCashIncreaseDecrease + $netCashAndBankCumulative) }}
@if ($withZero == 0) @endif