@extends('emails.email-template') @section('title', 'Withdrawal Status Update') @section('subtitle', $withdrawal->status == 'Processed' ? 'Your withdrawal has been successfully completed' : 'Your withdrawal is being processed') @section('company_name', $settings->site_name) @section('greeting', 'Dear ' . ($foramin ? 'Administrator' : $user->name)) @section('content')
@if ($withdrawal->status == 'Processed')

Withdrawal Completed

Your funds have been successfully transferred

@else

Processing Withdrawal

Your request is being processed

@endif
Amount
{{$settings->currency}}{{number_format($withdrawal->amount, 2)}}
{{ \Carbon\Carbon::parse($withdrawal->created_at)->format('M d, Y \a\t g:i A') }}
@if ($foramin)

Admin Action Required

{{$user->name}} has requested a withdrawal of {{$settings->currency}}{{number_format($withdrawal->amount, 2)}} to {{$withdrawal->accountname}} ({{$withdrawal->bankname}}). Please review this transaction.

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

Transfer Completed

Your withdrawal of {{$settings->currency}}{{number_format($withdrawal->amount, 2)}} has been successfully processed and sent to {{$withdrawal->accountname}} at {{$withdrawal->bankname}}.

@else

Processing Your Request

Your withdrawal of {{$settings->currency}}{{number_format($withdrawal->amount, 2)}} to {{$withdrawal->accountname}} at {{$withdrawal->bankname}} is being processed.

Expected completion: @if($withdrawal->payment_mode == 'International Wire Transfer') 2-3 business days @else within 1 hour @endif

@endif @endif @endsection @section('additional_content') @if (!$foramin)

Transaction Details

Reference: #{{$withdrawal->id ?? str_pad($withdrawal->id ?? '001', 6, '0', STR_PAD_LEFT)}}

Account Number {{$withdrawal->accountnumber}}
Account Holder {{$withdrawal->accountname}}
Bank Name {{$withdrawal->bankname}}
Description {{$withdrawal->Description}}
Transaction Date {{ \Carbon\Carbon::parse($withdrawal->created_at)->format('l, F j, Y \a\t g:i A') }}
Withdrawal Amount {{$settings->currency}}{{number_format($withdrawal->amount, 2)}}
Available Balance {{$settings->currency}}{{number_format($withdrawal->bal, 2)}}
@if($withdrawal->payment_mode == 'International Wire Transfer')

International Wire Transfer

Processing Time: International transfers typically take 2-3 business days due to correspondent banking networks.

Additional Fees: Intermediary banks may charge fees that will be deducted from the transfer amount.

@endif @if ($withdrawal->status != 'Processed')
View Transactions Dashboard
@endif

Security Information

This transaction was initiated from a verified device. If you did not authorize this withdrawal, please contact security immediately.

@endif @endsection @section('help_text')

Need Assistance?

Our support team is available 24/7

If you have any questions about this withdrawal or did not authorize this transaction, please contact our support team immediately.

Email Support

{{ $settings->contact_email }}

Help Center

Visit Help Center
@endsection