๐ณ
{{ __('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)
@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)
@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') }}