| {{__('db.Opening Cash')}} |
{{ number_format($opening_cash, 2) }} |
| {{__('db.Operating Activities')}} |
@if(count($operating) > 0)
@foreach($operating as $item)
| {{ $item->name }} |
{{ number_format($item->amount, 2) }} |
@endforeach
@else
| {{__('db.No data available')}} |
@endif
| {{__('db.Net Cash from Operating Activities')}} |
{{ number_format($net_operating_cash, 2) }} |
| {{__('db.Investing Activities')}} |
@if(count($investing) > 0)
@foreach($investing as $item)
| {{ $item->name }} |
{{ number_format($item->amount, 2) }} |
@endforeach
@else
| {{__('db.No data available')}} |
@endif
| {{__('db.Net Cash from Investing Activities')}} |
{{ number_format($net_investing_cash, 2) }} |
| {{__('db.Financing Activities')}} |
@if(count($financing) > 0)
@foreach($financing as $item)
| {{ $item->name }} |
{{ number_format($item->amount, 2) }} |
@endforeach
@else
| {{__('db.No data available')}} |
@endif
| {{__('db.Net Cash from Financing Activities')}} |
{{ number_format($net_financing_cash, 2) }} |
| {{__('db.Net Change in Cash')}} |
{{ number_format($net_change_cash, 2) }} |
| {{__('db.Closing Cash')}} |
{{ number_format($closing_cash, 2) }} |