@if (Session::has('success'))
Success ! {{ session('success') }}
@endif
@if($errors->any())
@foreach($errors->all() as $error)
Error ! {{ $error }}
@endforeach
@endif
Millennium Computers And Networking
Balance Sheet
Upto {{ $end_date}}
@php
$count = 1;
$mel=0;
$totalliab=0;
$totalasset=0;
@endphp
| Total Owners Equity |
|
@php
$mel=$me+$mer-$mee;
$totalliab=$totalliab+$mel;
@endphp
0.00
|
| |
| LIABILITIES: |
@php
$ccval=0;
$cval=0;
$totalliab1=0;
@endphp
@foreach ($liabilities as $liabilitie)
@php
$tcr = $liabilitie->tcr;
$tdr = $liabilitie->tdr;
$description = $liabilitie->description;
$ccval=$tcr-$tdr;
$cval=$cval+$ccval;
if($tcr!=$tdr){
echo "
| $description |
|
".number_format($ccval,2)." |
";
}
@endphp
@endforeach
| Loan from Others |
|
@php
$totalliab1=$totalliab+$cval;
$cval2=$cval+$loanfromothers;
$totalliab2=$totalliab1+$loanfromothers;
@endphp
0.00 |
|
0.00
|
| Total |
0.00
|
| |
| PROPERTY AND ASSETS: |
| FIXED ASSETS (W.D.V.) |
|
@php
$totalasset=$totalasset+$fixedassets;
@endphp
0.00 |
|
0.00
|
| CURRENT ASSETS: |
@php
$cval=0;
@endphp
@foreach ($currentassets as $currentasset)
@php
$tcr = $currentasset->tcr;
$tdr = $currentasset->tdr;
$description = $currentasset->description;
$ccval=$tdr-$tcr;
$cval=$cval+$ccval;
if($tcr!=$tdr){
echo "
| $description |
|
".number_format($ccval,2)." |
";
}
@endphp
@endforeach
@php
$totalasset=$totalasset+$cval;
@endphp
| Closing Inventory |
|
@php
$totalasset=$totalasset+$closinginventory;
$cval=$cval+$closinginventory;
@endphp
0.00 |
| Investment |
|
@php
$totalasset=$totalasset+$investment;
$cval=$cval+$investment;
@endphp
0.00 |
| Other Current Assets |
|
@php
$totalasset=$totalasset+$othercurrentasset;
$cval=$cval+$othercurrentasset;
@endphp
0.00 |
| Advance Deposits and Prepayments |
|
@php
$totalasset=$totalasset+$advdeposit;
$cval=$cval+$advdeposit;
@endphp
0.00 |
@foreach ($oterassets as $oterasset)
@php
$tcr = $oterasset->tcr;
$tdr = $oterasset->tdr;
$description = $oterasset->description;
$ccval=$tdr-$tcr;
$cval=$cval+$ccval;
$totalasset=$totalasset+$ccval;
echo "
| $description |
|
".number_format($ccval,2)." |
";
@endphp
@endforeach
|
0.00
|
| CASH & BANK |
| Cash in Hand |
|
0.00 |
@foreach ($bankdetailsclosing as $bankdetailsclosin)
@php
$total = $bankdetailsclosin->total;
$bank_name = $bankdetailsclosin->bank_name;
$cval=$cval+$total;
$totalasset=$totalasset+$total;
echo "
| $bank_name |
|
".number_format($total,2)." |
";
@endphp
@endforeach
|
0.00
|
| |
| TOTAL |
0.00 |
@endsection