๐Ÿ’ณ
{{ __('Manual Payment') }}

{{ __('Complete Your Payment') }}

{{ __('Order') }} #{{ $order->order_id }}
@if (!empty($plan->title))
๐Ÿ“ฆ {{ $plan->title }}
@endif
{{ __('Total Amount') }}
{{ \Plugins\PayManual\Helpers\CurrencyHelper::format($order->amount, $currency) }}
@if ($existingProof && $existingProof->status === 'approved')
โœ…
{{ __('Payment Approved!') }}
{{ __('Your subscription is now active. Thank you!') }}
@if ($existingProof->proof_image) {{ __('Proof') }} @endif ๐Ÿ  {{ __('Back to Dashboard') }} @elseif ($existingProof && $existingProof->status === 'pending')
โณ
{{ __('Under Review') }}
{{ __('Your payment proof has been received and is being verified by our team.') }}
@if ($existingProof->proof_image) {{ __('Proof') }} @endif @if ($existingProof->discount_amount > 0)
{{ __('Order Total') }} {{ \Plugins\PayManual\Helpers\CurrencyHelper::format($existingProof->amount, $currency) }}
๐ŸŽŸ Diskon ({{ $existingProof->promo_code }}) - {{ \Plugins\PayManual\Helpers\CurrencyHelper::format($existingProof->discount_amount, $currency) }}
{{ __('You Pay') }} {{ \Plugins\PayManual\Helpers\CurrencyHelper::format($existingProof->final_amount, $currency) }}
@endif ๐Ÿ  {{ __('Back to Dashboard') }} @else @if ($existingProof && $existingProof->status === 'rejected')
โŒ {{ __('Proof Rejected') }}: {{ $existingProof->notes }}
{{ __('Please upload a new proof below.') }}
@endif @if (session('success'))
โœ… {{ session('success') }}
@endif @if ($errors->any())
@foreach ($errors->all() as $e)
โ€ข {{ $e }}
@endforeach
@endif @include('pay-manual::partials.upload-form') @endif

{{ __('Secured Manual Payment') }} ยท {{ config('app.name') }}