@extends('emails.base') @section('header', 'Transaction Notification!') @section('slot')
We wanted to notify you that a new transaction has been successfully created on your account:
Transaction ID: {{ $transaction->id }}
@if($transaction->type == 'investment') @if($transaction->admin_remark)Admin Remark: {{ $transaction->admin_remark }}
@endifHere are the details for your new investment:
{{ $transaction->investment->scheme->description }}
@elseif($transaction->type == 'bonus')A bonus transaction has been created with the following details:
A withdrawal transaction has been created with the following details:
A new transaction has been created on your account. Please check your dashboard for more details.
@endif @if(!empty($transaction->method_info['remark']))If you did not initiate this transaction or if you notice any suspicious activity, please contact us immediately.
@endifThank you for being part of the {{ system_setting('site_name') }} community. We’re here to make your experience exceptional.
@endsection