@if (Session::has('success'))
Success ! {{ session('success') }}
@endif
@if($errors->any())
@foreach($errors->all() as $error)
Error ! {{ $error }}
@endforeach
@endif
Millennium Computers And Networking
Profit & Loss Statement {{ $CostcenterName }}
From {{ $start_date}} To {{ $end_date}}
@php
$count = 1;
$CrAmount= 0;
$DrAmount= 0;
@endphp
| Particulars |
|
Amount(Tk.) |
@php
$Total_dr=0;
$Total_cr=0;
@endphp
@foreach ($totalrevenues as $totalrevenue)
@php
$tdr = $totalrevenue->tdr;
$tcr = $totalrevenue->tcr;
$cval=$tcr-$tdr;
$bal=$cval;
@endphp
| Total Revenue |
|
{{ $cval }} |
@endforeach
@foreach ($totaloperatingexp1 as $totaloperatexp1)
@php
$tdr1 = $totaloperatexp1->tdr;
$tcr1 = $totaloperatexp1->tcr;
$exp1=$tdr1-$tcr1;
@endphp
@endforeach
@foreach ($totaloperatingexp2 as $totaloperatexp2)
@php
$tdr2 = $totaloperatexp2->tdr;
$tcr2 = $totaloperatexp2->tcr;
$exp2=$tdr2-$tcr2;
$tope = $exp1 + $exp2 ;
$bal1=$bal-$tope;
@endphp
@endforeach
@foreach ($financialexpenses as $financialexpense)
@php
$tdr3 = $financialexpense->tdr;
$tcr3 = $financialexpense->tcr;
$mee1=$tdr3-$tcr3;;
$bal2=$bal1-$mee1;
@endphp
@endforeach
@foreach ($depreciations as $depreciation)
@php
$tdr4 = $depreciation->tdr;
$tcr4 = $depreciation->tcr;
$mee2=$tdr4-$tcr4;
$bal3=$bal2-$mee2;
$tmee=$mee1+$mee2;
@endphp
@endforeach
| Less: Total Operating Expenses |
|
0.00 |
| Operating Profit |
(0.00) |
| Less: Non Operating Expenses |
|
|
| Financial Expenses and Charges |
0.00 |
| Depreciation |
0.00 |
|
|
0.00
|
| Net Profit/(Loss) |
(0.00) |
| Equity Capital Tk. |
| Opening Capital |
|
0.00 |
| Add: Net Income |
|
(0.00)
|
| Closing Capital |
0.00 |
@endsection