@extends('layouts.frontend') @section('js_after') @endsection @section('content')
Back Save Download / Print
Lumpsum Investment @if(isset($clientname)) Proposal For {{$clientname?$clientname:''}} @else Planning @endif
Initial Investment ₹ {{custome_money_format($amount)}}
Time Period {{$period?$period:0}} Years
Expected Rate of Return @if(isset($interest2))
Scenario 1 {{$interest1?number_format($interest1, 2, '.', ''):0}} %
Scenario 2 {{$interest2?number_format((float)$interest2, 2, '.', ''):0}} %
@else {{$interest1?number_format($interest1, 2, '.', ''):0}} % @endif

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(($amount*pow((1+($interest1/100)), $period)))}} ₹ {{custome_money_format(($amount*pow((1+($interest2/100)), $period)))}}
@ {{$interest1?number_format($interest1, 2, '.', ''):0}}% ₹ {{custome_money_format(($amount*pow((1+($interest1/100)), $period)))}}
@if(isset($report) && $report=='detailed')
Projected Annual Investment Value
@if(isset($interest2)) @php $previous_amount_int1 = $amount; $previous_amount_int2 = $amount; @endphp @for($i=1;$i<=$period;$i++) @php $previous_amount_int1 = $previous_amount_int1+ ($previous_amount_int1* $interest1/100); $previous_amount_int2 = $previous_amount_int2+ ($previous_amount_int2* $interest2/100); @endphp @endfor @else @php $previous_amount_int1 = $amount; @endphp @for($i=1;$i<=$period;$i++) @php $previous_amount_int1 = $previous_amount_int1+ ($previous_amount_int1* $interest1/100); @endphp @endfor @endif
Year Annual Investment Year End Value @ {{$interest1?number_format((float)$interest1, 2, '.', ''):0}} % Year End Value @ {{$interest2?number_format((float)$interest2, 2, '.', ''):0}} %
{{$i}} @if($i==1) ₹ {{$amount?custome_money_format($amount):0}} @else -- @endif ₹ {{custome_money_format($previous_amount_int1)}} ₹ {{custome_money_format($previous_amount_int2)}}
Year Annual Investment Year End Value @ {{$interest1?number_format((float)$interest1, 2, '.', ''):0}} %
{{$i}} @if($i==1) ₹ {{$amount?custome_money_format($amount):0}} @else -- @endif ₹ {{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