@extends('emails.layout') @section('title', 'Bank Transfer Pending Approval') @section('content')

Hi {{ $user->name }},

We have received your bank transfer payment request. Your subscription will be activated once we confirm the payment.

Payment Details:

Amount: {{ $transaction->currency ?? 'USD' }} {{ number_format($transaction->amount, 2) }}

Transaction ID: {{ $transaction->transaction_id }}

Date: {{ $transaction->created_at->format('M j, Y g:i A') }}

@if(isset($transaction->metadata['bank_transfer_instructions']))

Bank Transfer Instructions:

{!! nl2br(e($transaction->metadata['bank_transfer_instructions'])) !!}

@endif

Please ensure you have completed the transfer according to the instructions provided. Once we verify the payment, your subscription will be activated and you'll receive a confirmation email.

View Billing

Best regards,
The {{ $appName ?? config('app.name') }} Team

@endsection