@extends('layouts.frontend') @section('js_after') @endsection @section('content') @php //rate2 = (1+Q11%)^(1/12)-1 (Q10 = senario 2) $number_of_months = $period*12; $rate1_percent = pow((1+($interest1/100)), (1/12))-1; //(1+AV32)*Q8*(((1+AV32)^(12)-1)/AV32) $ap1 = (1+$rate1_percent)*$amount*((pow((1+$rate1_percent),(12))-1)/$rate1_percent); //senario1_amount = (AV34/(Q12%-Q9%))*((1+Q12%)^(Q10)-(1+Q9%)^(Q10)) //(AV34/(Q12%-Q9%))*((1+Q12%)^(Q10)-(1+Q9%)^(Q10)) $senario1_amount = ($ap1/($interest1/100-$annual_increment/100))*(pow((1+$interest1/100),$period)-pow((1+$annual_increment/100),$period)); if (isset($interest2)){ $rate2_percent = pow((1+($interest2/100)), (1/12))-1; $ap2 = (1+$rate2_percent)*$amount*((pow((1+$rate2_percent),(12))-1)/$rate2_percent); $senario2_amount = ($ap2/($interest2/100-$annual_increment/100))*(pow((1+$interest2/100),$period)-pow((1+$annual_increment/100),$period)); } //(Q8*12)*(((1+Q9%)^(Q10)-1)/((1+Q9%)-1)) $total_investment = ($amount*12)*((pow((1+$annual_increment/100),$period)-1)/((1+$annual_increment/100)-1)) @endphp
Back Save Download / Print
Step-Up SIP @if(isset($clientname)) Proposal For {{$clientname?$clientname:''}} @else Planning @endif
@if(isset($annual_increment) && $annual_increment!='') @endif
Monthly SIP Amount ₹ {{custome_money_format($amount)}}
Step-Up % Every Year {{$annual_increment?number_format($annual_increment, 2, '.', ''):0}} %
SIP Period {{$period?$period:0}} Years
Total Investment
₹ {{custome_money_format($total_investment)}}

Expected Future Value

@if(isset($interest2)) @else @endif
Scenario 1 @ {{$interest1?number_format($interest1, 2, '.', ''):0}} % Scenario 2 @ {{$interest1?number_format($interest2, 2, '.', ''):0}} %
₹ {{custome_money_format($senario1_amount)}} ₹ {{custome_money_format($senario2_amount)}}
@ {{$interest1?number_format($interest1, 2, '.', ''):0}}% ₹ {{custome_money_format($senario1_amount)}}
@if(isset($report) && $report=='detailed')
@if(isset($include_step_up) && $include_step_up=='yes') Normal SIP
@endif Year-Wise Projected Value
@if(isset($interest2)) @php $previous_amount_int1 = $amount; $previous_amount_int2 = $amount; $change_amount = $amount; @endphp @for($i=1;$i<=$period;$i++) @php //(AY119/(BA119-BC119))*((1+BA119)^(AW119)-(1+BC119)^(AW119)) $previous_amount_int1 = ($ap1/($interest1/100-$annual_increment/100))*(pow((1+$interest1/100),($i))-pow((1+$annual_increment/100),($i))); $previous_amount_int2 = ($ap2/($interest2/100-$annual_increment/100))*(pow((1+$interest2/100),($i))-pow((1+$annual_increment/100),($i))); if ($i==1){ $change_amount = $amount; }else{ $change_amount = $change_amount+($change_amount*$annual_increment/100); } @endphp @endfor @else @php $previous_amount_int1 = $amount; @endphp @for($i=1;$i<=$period;$i++) @php //(AY119/(BA119-BC119))*((1+BA119)^(AW119)-(1+BC119)^(AW119)) $previous_amount_int1 = ($ap1/($interest1/100-$annual_increment/100))*(pow((1+$interest1/100),($i))-pow((1+$annual_increment/100),($i))); if ($i==1){ $change_amount = $amount; }else{ $change_amount = $change_amount+($change_amount*$annual_increment/100); } @endphp @endfor @endif
Year Monthly Investment Annual Investment Year End Value
Scenario 1
@ {{$interest1?number_format((float)$interest1, 2, '.', ''):0}} %
Year End Value
Scenario 2
@ {{$interest2?number_format((float)$interest2, 2, '.', ''):0}} %
{{$i}} ₹ {{$change_amount?custome_money_format($change_amount):0}} ₹ {{$change_amount?custome_money_format($change_amount*12):0}} ₹ {{custome_money_format($previous_amount_int1)}} ₹ {{custome_money_format($previous_amount_int2)}}
Year Monthly Investment Annual Investment Year End Value @ {{$interest1?number_format((float)$interest1, 2, '.', ''):0}} %
{{$i}} ₹ {{$change_amount?custome_money_format($change_amount):0}} ₹ {{$change_amount?custome_money_format($change_amount*12):0}} ₹ {{custome_money_format($previous_amount_int1)}}

*Returns are not guaranteed. The above is for illustration purpose only. Report Date : {{date('d/m/Y')}}

@endif @include('frontend.calculators.suggested.output') Back Save Download / Print
@endsection