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