@extends('emails.email-template') @section('title', 'Deposit Notification') @section('subtitle', $deposit->status == 'Processed' ? 'Your deposit has been processed' : 'Your deposit is being processed') @section('company_name', config('app.name')) @section('greeting', 'Hello ' . ($foramin ? 'Admin' : $user->name)) @section('content') @if ($foramin)

This is to inform you of a successful deposit of {{ $settings->currency . $deposit->amount }} from {{ $user->name }}. {{ $deposit->status == "Processed" ? '' : ' Please login to process it.' }}

@else @if ($deposit->status == 'Processed')

This is to inform you that your deposit of {{ $settings->currency . $deposit->amount }} has been received and confirmed. Your account balance has been credited with the specified amount.

@else

Your Crypto Asset Deposit has been recorded successfully and is currently undergoing confirmation. You will receive an automatic notification once your transaction is confirmed on the blockchain network. This usually takes up to 15 minutes.

@endif @endif @endsection @section('additional_content') @if (!$foramin && $deposit->status != 'Processed')
Deposit Details
Amount:
{{ $settings->currency . $deposit->amount }}
Date:
{{ \Carbon\Carbon::parse($deposit->created_at)->toDayDateTimeString() }}
Status:
Pending Confirmation

Note: Please wait while your transaction is being confirmed on the blockchain. This process is automatic and requires no further action from you.

@endif @if (!$foramin && $deposit->status == 'Processed')

Success! Your deposit has been confirmed and your account has been credited.

@endif @endsection @section('help_text')

If you have any questions about this transaction, please contact our support team for assistance.

@endsection