mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 21:22:58 +01:00
17 lines
653 B
PHP
17 lines
653 B
PHP
@extends('portal.ninja2020.layout.clean')
|
|
@section('meta_title', $billing_subscription->product->product_key)
|
|
|
|
@section('body')
|
|
@livewire('billing-portal-purchase', ['billing_subscription' => $billing_subscription, 'contact' => auth('contact')->user(), 'hash' => $hash])
|
|
@stop
|
|
|
|
@push('footer')
|
|
<script>
|
|
function updateGatewayFields(companyGatewayId, paymentMethodId) {
|
|
document.getElementById('company_gateway_id').value = companyGatewayId;
|
|
document.getElementById('payment_method_id').value = paymentMethodId;
|
|
document.getElementById('payment-method-form').submit();
|
|
}
|
|
</script>
|
|
@endpush
|