@extends('emails.email-template') @section('title', 'Transfer Status Update') @section('subtitle', $withdrawal->status == 'Processed' ? 'Your transfer request has been approved' : 'Your transfer request is being processed') @section('company_name', $settings->site_name) @section('greeting', 'Hello ' . ($foramin ? 'Admin' : $user->name)) @section('content')
@if ($withdrawal->status == 'Processed')
Transfer Approved
@else
Transfer Processing
@endif
@if ($foramin)

This is to inform you that {{$user->name}} has made a transfer request of {{$settings->currency.$withdrawal->amount}} to {{$withdrawal->accountname}}. Please login to your bank website to review and take necessary action.

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

Your transfer request of {{$settings->currency.$withdrawal->amount}} to {{$withdrawal->accountname}}, {{$withdrawal->bankname}} has been approved.

The funds have been successfully processed and sent to the specified account.

@else

Your transfer request of {{$settings->currency.$withdrawal->amount}} to {{$withdrawal->accountname}}, {{$withdrawal->bankname}} has been confirmed.

The beneficiary is expected to be credited within @if($withdrawal->payment_mode == 'International Wire Transfer') 72 hours. @else an hour. @endif

@endif @endif @endsection @section('additional_content') @if (!$foramin && $withdrawal->status != 'Processed')
Transaction Details
Account Number:
{{$withdrawal->accountnumber}}
Account Name:
{{$withdrawal->accountname}}
Description:
{{$withdrawal->Description}}
Total Amount:
{{$settings->currency.$withdrawal->amount}}
Date:
{{ \Carbon\Carbon::parse($withdrawal->created_at)->toDayDateTimeString() }}
Available Balance:
{{$settings->currency.$withdrawal->bal}}
@if($withdrawal->payment_mode == 'International Wire Transfer')

International Wire Transfer Information

International transfers typically take 2-3 business days to process due to additional security verifications.

Please note that intermediary banks may charge additional fees.

@endif
View All Transactions
@endif @endsection @section('help_text')

Need Assistance?

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

📧
{{ $settings->contact_email }}
@endsection @section('footer') © {{ date('Y') }} {{ $settings->site_name }} | All Rights Reserved | Secure Banking Solutions @endsection