Offline Payment modified.
This commit is contained in:
		
							
								
								
									
										22
									
								
								app/Events/PaymentGatewayConfirm.php
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										22
									
								
								app/Events/PaymentGatewayConfirm.php
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,22 @@
 | 
			
		||||
<?php
 | 
			
		||||
 | 
			
		||||
namespace App\Events;
 | 
			
		||||
 | 
			
		||||
class PaymentGatewayConfirm
 | 
			
		||||
{
 | 
			
		||||
    public $gateway;
 | 
			
		||||
 | 
			
		||||
    public $invoice;
 | 
			
		||||
 | 
			
		||||
    /**
 | 
			
		||||
     * Create a new event instance.
 | 
			
		||||
     *
 | 
			
		||||
     * @param $gateway
 | 
			
		||||
     * @param $invoice
 | 
			
		||||
     */
 | 
			
		||||
    public function __construct($gateway, $invoice)
 | 
			
		||||
    {
 | 
			
		||||
        $this->gateway = $gateway;
 | 
			
		||||
        $this->invoice = $invoice;
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
		Reference in New Issue
	
	Block a user