@if ($paymentModal) @php $paymentGateway = \App\Models\PaymentGateway::where('is_active', true)->first(); @endphp
{{ trans('billing.payment.payment', ['paket' => $invoice->customer_paket->paket->name, 'customer' => $invoice->customer_paket->user->full_name]) }} @if ($paymentGateway && $paymentGateway->value === 'tripay' && env('TRIPAY_MODE') === 'development') Payment Gateway The payment gateway is in developer mode, so don't conduct real transactions with customers. It's used solely for testing payments through the payment gateway. @endif
@if ($errors->any()) Error
    @foreach ($errors->all() as $error)
  1. {{ $error }}
  2. @endforeach
@endif
{!! trans('billing.label.payment-methode') !!} {{ trans('billing.ph.select-payment-methode') }} {{ trans('billing.ph.cash') }} @if (count(\App\Models\Bank::where('disabled', false)->get())) {{ trans('billing.ph.bank-transfer') }} @endif @if ($paymentGateway) {{ $paymentGateway->name }} @endif {{ trans('billing.ph.paylater') }}
{!! trans('billing.label.bank') !!} {{ trans('billing.ph.select-bank') }} @foreach (\App\Models\Bank::where('disabled', false)->orderBy('bank_name', 'asc')->get() as $account_bank) {{ $account_bank->bank_name }} - {{ $account_bank->account_name }} @endforeach
{{ $order ? $order->payment_name : 'Select Method' }} @foreach ($order ? collect($paymentChanels)->where('code', '!=', $order->payment_method) : collect($paymentChanels) as $paymentChanel) {{ $paymentChanel['name'] }} - {{ $paymentChanel['code'] }} @endforeach
@if ($order) @if (!is_null($order['qr_url'])) Kode QR:
@elseif (!is_null($order['pay_url'])) Pay URL: @else Kode Bayar: @endif @endif {{ trans('Send WA Notification') }}
{{ trans('billing.button.cancel') }} @if ($order) {{ __('Change Payment Method') }} @else {{ __('billing.button.process') }} @endif
@endif