@php $system_name = \App\Models\Setting::where('type', 'system_name')->value('description'); $system_favicon = \App\Models\Setting::where('type', 'system_fav_icon')->value('description'); @endphp Virtual Account - {{ $system_name }} @if (session('app_url')) @include('payment.go_back_to_mobile_app') @endif
{{ get_phrase('Payment Details') }}
{{ get_phrase('Back to History') }}

{{ get_phrase('Virtual Account Payment') }}

{{ get_phrase('Bank') }}
BTN {{ get_phrase('Virtual Account') }}
{{ get_phrase('VA Number') }}
{{ chunk_split($vaPayment->va_number, 4, ' ') }}
{{ get_phrase('Total Amount') }} Rp {{ number_format($vaPayment->total_amount, 0, ',', '.') }}
{{ get_phrase('Time Remaining') }}
--:--:-- {{ get_phrase('Waiting for payment') }}
{{ get_phrase('Expired At') }} {{ \Carbon\Carbon::parse($vaPayment->expired_at)->translatedFormat('l, d F Y H:i') }} @if(\Carbon\Carbon::now()->gt($vaPayment->expired_at)) {{ get_phrase('Expired') }} @endif
{{ get_phrase('Status') }} @if ($vaPayment->status == 0) {{ get_phrase('UNPAID') }} @elseif ($vaPayment->status == 1) {{ get_phrase('PAID') }} @else {{ get_phrase('FAILED') }} @endif
{{ get_phrase('Payment Instructions') }}
  1. {{ get_phrase('Go to ATM or Mobile Banking BTN') }}
  2. {{ get_phrase('Select menu "Transfer" or "Payment"') }}
  3. {{ get_phrase('Select "Virtual Account" or "VA"') }}
  4. {{ get_phrase('Enter the VA number above') }}
  5. {{ get_phrase('Confirm the amount and complete the payment') }}
  6. {{ get_phrase('Payment confirmation will be processed automatically') }}
{{ get_phrase('Secure payment via BTN Virtual Account') }}
@if($vaPayment->status == 0 && \Carbon\Carbon::now()->lt($vaPayment->expired_at)) @endif
@include('frontend.default.toaster') <