@extends('emails.email-template') @section('title', 'Withdrawal Approved') @section('subtitle', 'Your withdrawal request has been processed') @section('company_name', $settings->site_name) @section('greeting', 'Hello ' . $user->name . ' ' . $user->l_name) @section('content')

This is to inform you that your withdrawal request has been approved and processed successfully.

@endsection @section('additional_content')
Withdrawal Details
Amount:
{{ $settings->currency }}{{ number_format($deposit->amount) }}
Payment Method:
{{ $deposit->payment_mode }}
Date:
{{ \Carbon\Carbon::parse($deposit->created_at)->toDayDateTimeString() }}
Status:
Processed

The funds have been sent to your designated payment method. Please allow some time for the funds to reflect in your account depending on your payment provider's processing time.

@endsection @section('help_text')

If you have any questions about this transaction or if you did not receive your funds within the expected timeframe, please contact our support team at {{ $settings->contact_email }}.

@endsection @section('footer') {{ $settings->site_name }} - {{ $settings->description }} @endsection