@extends('emails.base')
@section('header', 'Transaction Notification!')
@section('slot')
We wanted to notify you that an existing transaction on your account has been successfully updated:
Transaction ID: {{ $transaction->id }}
@if($transaction->type == 'investment')
Here are the updated details for your investment:
- Investment Amount (USD): ${{ $transaction->amount_usd }}
- Transaction Type: {{ $transaction->type }}
- Status: {{ $transaction->status }}
- Investment Plan: {{ $transaction->investment->scheme->scheme_name }}
- Interest Plan: {{ $transaction->investment->interest_plan }}
- Interest Rate: {{ $transaction->investment->scheme->interest_rate }}% per week
- Risk Exposure: {{ $transaction->investment->scheme->risk_exposure_percentage }}% risk
@if($transaction->status == \App\Enums\StatusEnum::APPROVED)
- Next Payout Date: {{ \Carbon\Carbon::parse($transaction->investment->next_payout_time)->format('F j, Y') }}
- Investment End Date: {{ \Carbon\Carbon::parse($transaction->investment->investment_end_date)->format('F j, Y') }}
@endif
{{ $transaction->investment->scheme->scheme_name }}
{{ $transaction->investment->scheme->description }}
@elseif($transaction->type == 'bonus')
A bonus transaction has been updated with the following details:
- Bonus Amount (USD): ${{ $transaction->amount_usd }}
- Status: {{ $transaction->status }}
@elseif($transaction->type == 'withdrawal')
A withdrawal transaction has been updated with the following details:
- Withdrawal Amount (USD): ${{ $transaction->amount_usd }}
- Status: {{ $transaction->status }}
- Payment Address: {{ $transaction->method_info['address'] }}
- Payment Network: {{ $transaction->method_info['network'] }}
@else
A transaction on your account has been updated. Please check your dashboard for more details.
@endif
@if(!empty($transaction->method_info['remark']))
Remark - {{ $transaction->method_info['remark'] }}
@endif
@if (empty($transaction->method_info['is_added_by_admin']))
If you did not initiate this transaction or if you notice any suspicious activity, please
contact us immediately.
@endif
Thank you for being part of the {{ system_setting('site_name') }} community. We’re here to make your experience exceptional.
@endsection