Offline Payment modified.

This commit is contained in:
Cüneyt Şentürk
2017-11-17 02:09:11 +03:00
parent a3dbdaffad
commit 5b9d9d1b03
4 changed files with 85 additions and 0 deletions

View 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;
}
}