mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 13:12:50 +01:00
25 lines
684 B
PHP
25 lines
684 B
PHP
@extends('portal.ninja2020.layout.clean')
|
|
@section('meta_title', ctrans('texts.purchase'))
|
|
|
|
@section('body')
|
|
@livewire('billing-portal-purchase', ['subscription' => $subscription->id, 'db' => $subscription->company->db, 'hash' => $hash, 'request_data' => $request_data, 'campaign' => request()->query('campaign') ?? null])
|
|
@stop
|
|
|
|
@push('footer')
|
|
|
|
<script>
|
|
|
|
document.addEventListener('livewire:init', () => {
|
|
|
|
Livewire.on('beforePaymentEventsCompleted', () => {
|
|
setTimeout(() => {
|
|
document.getElementById('payment-method-form').submit()
|
|
}, 2000);
|
|
});
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
@endpush
|