@extends('layouts.app') @section('title') {{'Cashflow'}} @endsection @section('content')
Cashflow Back
@if (Session::has('msg'))
{{ Session::get('msg') }}
@endif
Start Date
End Date

 


@include('layouts.head')

Statement of Cashflow

{!! date('d-F-Y', strtotime($start_date)) !!} to {!! date('d-F-Y', strtotime($end_date)) !!}

@php $Receivable = $summary_info->Receivable; $Payable = $summary_info->Payable; $Nett_Profit = $Stock + $Receivable - $Payable; @endphp
S.L. Accounts Name Amount in BDT
--- Operating Activities
1 Receivable {{ number_format($Receivable,2) }}
2 Stock of goods {{ number_format($Stock,2) }}
3 Payable {{ number_format($Payable,2) }}
*** Profit & Loss {{ number_format($Nett_Profit,2) }}
@endsection