|
Dear {{ $user->name }},
Your investment status has been updated accordingly.
Please review the latest status update below. This change has also been reflected in your dashboard portfolio.
|
Investment Status Update
Investment Plan:
{{ $plan->name }}
Amount Invested:
{{ number_format($investment->amount_invested, 2) }}
Expected ROI:
{{ number_format($investment->expected_roi, 2) }}%
@if($investment->actual_return)
Actual Return:
{{ number_format($investment->actual_return, 2) }}
@endif
Current Status:
{{ ucfirst($status) }}
|
@if($status === 'completed')
Investment Completed Successfully
Your investment has matured successfully and the investment proceeds have been credited to your wallet balance.
|
@elseif($status === 'active')
Investment Activated
Your investment is now active and currently running according to the selected investment package.
|
@elseif($status === 'cancelled')
Investment Cancelled
This investment has been cancelled. Any eligible refund has been returned to your wallet balance.
|
@elseif($status === 'failed')
Investment Failed
This investment has been marked as failed. Please contact support if you require additional clarification regarding this update.
|
@endif
Important Notice
A dashboard notification has also been created for this update. You may review the full investment details and status history directly from your investment portfolio.
|
Thank you for choosing {{ $websiteName }}. We remain committed to providing a secure and transparent investment experience.
|