@extends('emails.layout') @section('title', 'Bank Transfer Declined') @section('content')
Hi {{ $user->name }},
Unfortunately, we were unable to verify your bank transfer payment.
Payment Details:
Amount: {{ $transaction->currency ?? 'USD' }} {{ number_format($transaction->amount, 2) }}
Transaction ID: {{ $transaction->transaction_id }}
@if(isset($reason))Reason: {{ $reason }}
@endifThis could be due to:
Please verify your transfer details and try again, or contact our support team for assistance.
Best regards,
The {{ $appName ?? config('app.name') }} Team