@extends('emails.email-template') @section('title', 'Investment Plan Completed') @section('subtitle', 'Your investment cycle has concluded') @section('company_name', $demo->sender) @section('greeting', 'Hello ' . $demo->receiver_name) @section('content')

This is to notify you that your investment plan ({{ $demo->receiver_plan }} plan) has expired and your capital for this plan has been added to your account for withdrawal.

@endsection @section('additional_content')
Investment Summary
Plan:
{{ $demo->receiver_plan }}
Amount:
{{ $demo->received_amount }}
Completion Date:
{{ $demo->date }}

Success! Your funds are now available in your account balance and ready for withdrawal or reinvestment.

@endsection @section('help_text')

If you want to reinvest or have any questions about your completed investment, please contact our investment advisors for assistance.

@endsection @section('footer') If you have any questions, please contact support@{{ strtolower(str_replace(' ', '', $demo->sender)) }}.com @endsection