@if(request('alert_type') == 'remove_mortgage_insurance') @foreach ($opportunity_alerts as $alert) @endforeach
Property Estimated Home Value Current Loan Balance
{{$alert->other_info->address}}, {{$alert->other_info->city}}, {{$alert->other_info->zipcode}} ${{number_format($alert->current_estimated_home_value, 2)}} ${{number_format($alert->current_loan_balance, 2)}}
@elseif(request('alert_type') == 'take_cash_out') @foreach ($opportunity_alerts as $alert) @endforeach
Property Estimated
Home Value
Current
Loan Balance
Occupancy Property Type Potential
Cash Out Value
{{$alert->other_info->address}}, {{$alert->other_info->city}}, {{$alert->other_info->zipcode}} ${{number_format($alert->current_estimated_home_value, 2)}} ${{number_format($alert->current_loan_balance, 2)}} {{$alert->occupancy}} {{$alert->property_type}} ${{number_format($alert->other_info->potential_cash_out_value, 2)}}
@elseif(request('alert_type') == 'lower_rate_same_term') @foreach ($opportunity_alerts as $alert) @endforeach
Property New Rate New Term Monthly EMI Interest Saving Created At
{{$alert->other_info->address}}, {{$alert->other_info->city}}, {{$alert->other_info->zipcode}} {{number_format($alert->new_rate,3)}}% {{monthToYear($alert->new_term)}} Current EMI - ${{number_format(($alert->other_info->current_monthly_payment ?? 0), 2)}}
Future EMI - ${{number_format(($alert->other_info->future_monthly_payment ?? 0), 2)}}
${{number_format(($alert->other_info->interest_saving ?? 0), 2)}} {{$alert->created_at}}
@elseif(request('alert_type') == 'lower_rate_not_same_term') @foreach ($opportunity_alerts as $alert) @endforeach
Property New Rate New Term Monthly EMI Interest Saving Created At
{{$alert->other_info->address}}, {{$alert->other_info->city}}, {{$alert->other_info->zipcode}} {{number_format($alert->new_rate,3)}}% {{$alert->new_term}} Current EMI - ${{number_format(($alert->other_info->current_monthly_payment ?? 0), 2)}}
Future EMI - ${{number_format(($alert->other_info->future_monthly_payment ?? 0), 2)}}
${{number_format(($alert->other_info->interest_saving ?? 0), 2)}} {{$alert->created_at}}
@elseif(request('alert_type') == 'change_loan_type') @foreach ($opportunity_alerts as $alert) @endforeach
Property New Rate New Loan Type New Term Monthly EMI Interest Saving Created At
{{$alert->other_info->address}}, {{$alert->other_info->city}}, {{$alert->other_info->zipcode}} {{number_format($alert->new_rate)}}% {{$alert->new_loan_type}} {{$alert->new_term}} Current EMI - ${{number_format(($alert->other_info->current_monthly_payment ?? 0), 2)}}
Future EMI - ${{number_format(($alert->other_info->future_monthly_payment ?? 0), 2)}}
${{number_format(($alert->other_info->interest_saving ?? 0), 2)}} {{$alert->created_at}}
@endif