Cash-Flow (Direct Method)
{{-- OPERATING CASH --}}
Operating Activities
| # |
Period |
Receipts |
Payments |
Net Cash |
@foreach($periods as $i => $row)
| {{ $i+1 }} |
{{ $row->period }} |
{{ number_format($row->operating_in,2) }} |
{{ number_format($row->operating_out,2) }} |
{{ number_format($row->net_operating,2) }} |
@endforeach
{{-- FINANCING CASH --}}
Financing Activities
| # |
Period |
Injections |
Net Cash |
@foreach($periods as $i => $row)
| {{ $i+1 }} |
{{ $row->period }} |
{{ number_format($row->financing_in,2) }} |
{{ number_format($row->net_financing,2) }} |
@endforeach
@endsection