{{-- @extends('docs.master', ['title' => 'Stock Report']) --}} @extends(($data['value'] == 2) ? 'docs.mastertwo' : 'docs.master', ['title'=> 'Cash Flow ']) @section('content')
Cash Flow
@endsection @endif| # | Year | Month | Recievables | Receipts | Payables | Paid |
|---|---|---|---|---|---|---|
| {{$i++}} | {{$item->yearmonth1}} | {{$item->monthname}} | {{number_format($item->receivables,0)}} | {{number_format($item->receipts,0)}} | {{number_format($item->payables,0)}} | {{number_format($item->paid,0)}} |
| Total | {{number_format($model['data']->sum('receivables'),0)}} | {{number_format($model['data']->sum('receipts'),0)}} | {{number_format($model['data']->sum('payables'),0)}} | {{number_format($model['data']->sum('paid'),0)}} | ||
Printed On: {{date('d-m-Y h:i:s A')}} by {{Auth::User()->name}}