akaunting/app/Events/InvoicePaid.php
2017-11-19 02:52:01 +03:00

22 lines
312 B
PHP

<?php
namespace App\Events;
class InvoicePaid
{
public $invoice;
public $request;
/**
* Create a new event instance.
*
* @param $invoice
*/
public function __construct($invoice, $request)
{
$this->invoice = $invoice;
$this->request = $request;
}
}