@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 }}

@endif

Here are the details for your new investment:

{{ $transaction->investment->scheme->scheme_name }}

{{ $transaction->investment->scheme->description }}

@elseif($transaction->type == 'bonus')

A bonus transaction has been created with the following details:

@elseif($transaction->type == 'withdrawal')

A withdrawal transaction has been created with the following details:

@else

A new transaction has been created on your account. Please check your dashboard for more details.

@endif @if(!empty($transaction->method_info['remark']))
  • Remark - {{ $transaction->method_info['remark'] }}
  • @endif
    View Transaction Details
    @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