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

Hi {{ $user->name }},

Great news! Your bank transfer payment has been approved and your subscription is now active.

Payment Details:

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

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

Plan: {{ $subscription->plan->name ?? 'N/A' }}

Next Billing: {{ $subscription->renewal_at ? $subscription->renewal_at->format('M j, Y') : 'N/A' }}

Your build credits have been added to your account. You can now start creating and building your mobile apps!

Go to Dashboard

Thank you for your payment!

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

@endsection