mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-10-30 16:22:58 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			23 lines
		
	
	
		
			680 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			680 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| @extends('portal.ninja2020.layout.clean')
 | |
| @section('meta_title', ctrans('texts.purchase'))
 | |
| 
 | |
| @section('body')
 | |
|     @livewire('billing-portal-purchasev2', ['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()
 | |
|                 }, 2500);
 | |
|             });
 | |
| 
 | |
|         });
 | |
|         
 | |
|     </script>
 | |
| @endpush
 |