2022-11-23 07:27:43 +01:00
|
|
|
@extends('portal.ninja2020.layout.clean')
|
|
|
|
@section('meta_title', ctrans('texts.purchase'))
|
|
|
|
|
|
|
|
@section('body')
|
2022-12-22 06:53:48 +01:00
|
|
|
@livewire('billing-portal-purchasev2', ['subscription' => $subscription->id, 'db' => $subscription->company->db, 'hash' => $hash, 'request_data' => $request_data, 'campaign' => request()->query('campaign') ?? null])
|
2022-11-23 07:27:43 +01:00
|
|
|
@stop
|
|
|
|
|
|
|
|
@push('footer')
|
|
|
|
<script>
|
|
|
|
function updateGatewayFields(companyGatewayId, paymentMethodId) {
|
|
|
|
document.getElementById('company_gateway_id').value = companyGatewayId;
|
|
|
|
document.getElementById('payment_method_id').value = paymentMethodId;
|
|
|
|
}
|
|
|
|
|
|
|
|
Livewire.on('beforePaymentEventsCompleted', () => document.getElementById('payment-method-form').submit());
|
|
|
|
</script>
|
|
|
|
@endpush
|