@extends('layouts.frontend') @section('js_after') @endsection @section('content') @php $child_name = $child_name; $age = $current_age; $fund_requirement_purpose = $fund_requirement_purpose; $age1 = isset($fund_required_age) ? $fund_required_age : 0; $amount1 = isset($fund_required_amount) ? $fund_required_amount : 0; $investment_amount = $investment_amount; $inflation_rate = $inflation_rate; $return_rate = $return_rate; $return_rate_1 = $return_rate_1; $monthly_return_rate_1 = (1+$return_rate_1/100)**(1/12)-1; $period = isset($period) ? $period : 0; //Age 1 $num_of_years1 = $age1 - $age; $total_number_of_months1 = $num_of_years1 * 12; $fv_fund_required1 = $amount1*(1+$inflation_rate/100)**$num_of_years1; $fv_current_investment = $investment_amount*(1+$return_rate/100)**$num_of_years1; $balance_required = $fv_fund_required1 - $fv_current_investment; $lumpsum_investment_required_1 = $balance_required / ((1+($return_rate_1/100))**($num_of_years1)); //5 years $balance_after_5_years_opt1 = ( $num_of_years1 < 5 ) ? "NA" : $balance_required / ((1+($return_rate_1/100))**( $num_of_years1 - 5 )); $required_sip_for_5_years_opt1 = ($balance_after_5_years_opt1 == "NA") ? "NA" : ($balance_after_5_years_opt1*$monthly_return_rate_1)/((1+$monthly_return_rate_1)*(((1+$monthly_return_rate_1)**60) - 1)); //10 years $balance_after_10_years_opt1 = ( $num_of_years1 < 10 ) ? "NA" : $balance_required / ((1+($return_rate_1/100))**( $num_of_years1 -10 )); $required_sip_for_10_years_opt1 = ($balance_after_10_years_opt1 == "NA") ? "NA" : ($balance_after_10_years_opt1*$monthly_return_rate_1)/((1+$monthly_return_rate_1)*(((1+$monthly_return_rate_1)**120) - 1)); //Till end $required_sip_till_end_opt1 = ($balance_required*$monthly_return_rate_1)/((1+$monthly_return_rate_1)*(((1+$monthly_return_rate_1)**($total_number_of_months1))-1)); if (isset($return_rate_2)){ $return_rate_2 = $return_rate_2; $monthly_return_rate_2 = (1+$return_rate_2/100)**(1/12)-1; $lumpsum_investment_required_2 = $balance_required / ((1+($return_rate_2/100))**($num_of_years1)); $balance_after_5_years_opt2 = ( $num_of_years1 < 5 ) ? "NA" : $balance_required / ((1+($return_rate_2/100))**( $num_of_years1 - 5)); $required_sip_for_5_years_opt2 = ($balance_after_5_years_opt2 == "NA") ? "NA" : ($balance_after_5_years_opt2*$monthly_return_rate_2)/((1+$monthly_return_rate_2)*(((1+$monthly_return_rate_2)**60) - 1)); $balance_after_10_years_opt2 = ( $num_of_years1 < 10 ) ? "NA" : $balance_required / ((1+($return_rate_2/100))**( $num_of_years1 - 10 )); $required_sip_for_10_years_opt2 = ($balance_after_10_years_opt2 == "NA") ? "NA" : ($balance_after_10_years_opt2*$monthly_return_rate_2)/((1+$monthly_return_rate_2)*(((1+$monthly_return_rate_2)**120) - 1)); $required_sip_till_end_opt2 = ($balance_required*$monthly_return_rate_2)/((1+$monthly_return_rate_2)*(((1+$monthly_return_rate_2)**($total_number_of_months1))-1)); } @endphp
Back Save Download / Print
Child {{$fund_requirement_purpose}} @if(isset($clientname)) Proposal For {{$clientname?$clientname:''}} @else Planning @endif
Child Name {{$child_name}}
@if(isset($return_rate_2)) @endif
Child Age {{$current_age?$current_age:0}} Years
Fund Required at Age {{$fund_required_age?$fund_required_age:0}} Years
Fund Required ₹ {{custome_money_format($fund_required_amount)}}
Current Investment ₹ {{custome_money_format($investment_amount)}}
Expected Rate of Return (CI) {{$return_rate?number_format($return_rate, 2, '.', ''):0}} %
Expected Inflation Rate {{$inflation_rate?number_format($inflation_rate, 2, '.', ''):0}} %
Expected Return @if(isset($return_rate_2)) (Scenario 1) @endif {{$return_rate_1?number_format($return_rate_1, 2, '.', ''):0}} %
Expected Return (Scenario 2) {{$return_rate_1?number_format($return_rate_2, 2, '.', ''):0}} %
Inflated Cost of Funds Required ₹ {{custome_money_format($fv_fund_required1)}}
Expected FV of Current Investment {{ ($investment_amount > 0) ? "₹" . custome_money_format($fv_current_investment) : "NA" }}
Balance Fund Required ₹ {{custome_money_format($balance_required)}}
@if($fv_current_investment>$fv_fund_required1)

You don't need any further investment for the above Goal!

@else

Available Investment Options:

@if(isset($return_rate_2)) @else @endif
Investment Option Option 1 @ {{$return_rate_1?number_format($return_rate_1, 2, '.', ''):0}} % Option 2 @ {{$return_rate_2?number_format($return_rate_2, 2, '.', ''):0}} %
Monthly SIP Till Age {{$fund_required_age}} ₹ {{($required_sip_till_end_opt1=='NA')?$required_sip_till_end_opt1:custome_money_format($required_sip_till_end_opt1)}} ₹ {{($required_sip_till_end_opt2=='NA')?$required_sip_till_end_opt2:custome_money_format($required_sip_till_end_opt2)}}
Monthly SIP For 5 Years ₹ {{$required_sip_for_5_years_opt1 == "NA" ? "NA" : custome_money_format($required_sip_for_5_years_opt1)}} ₹ {{$required_sip_for_5_years_opt2 == "NA" ? "NA" : custome_money_format($required_sip_for_5_years_opt2)}}
Monthly SIP For 10 Years ₹ {{$required_sip_for_10_years_opt1 == "NA" ? "NA" : custome_money_format($required_sip_for_10_years_opt1)}} ₹ {{$required_sip_for_10_years_opt2 == "NA" ? "NA" : custome_money_format($required_sip_for_10_years_opt2)}}
Lumpsum Investment ₹ {{($lumpsum_investment_required_1=='NA')?$lumpsum_investment_required_1:custome_money_format($lumpsum_investment_required_1)}} ₹ {{($lumpsum_investment_required_2=='NA')?$lumpsum_investment_required_2:custome_money_format($lumpsum_investment_required_2)}}
Investment Option @ {{$return_rate_1?number_format($return_rate_1, 2, '.', ''):0}} %
Monthly SIP Till Age {{$fund_required_age}} ₹ {{($required_sip_till_end_opt1=='NA')?$required_sip_till_end_opt1:custome_money_format($required_sip_till_end_opt1)}}
Monthly SIP For 5 Years ₹ {{$required_sip_for_5_years_opt1 == "NA" ? "NA" : custome_money_format($required_sip_for_5_years_opt1)}}
Monthly SIP For 10 Years ₹ {{$required_sip_for_10_years_opt1 == "NA" ? "NA" : custome_money_format($required_sip_for_10_years_opt1)}}
Lumpsum Investment ₹ {{($lumpsum_investment_required_1=='NA')?$lumpsum_investment_required_1:custome_money_format($lumpsum_investment_required_1)}}
@endif

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

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