akaunting/app/Events/InvoicePaid.php

22 lines
312 B
PHP
Raw Normal View History

2017-11-17 02:09:11 +03:00
<?php
namespace App\Events;
class InvoicePaid
2017-11-17 02:09:11 +03:00
{
public $invoice;
public $request;
2017-11-17 02:09:11 +03:00
/**
* Create a new event instance.
*
* @param $invoice
*/
public function __construct($invoice, $request)
2017-11-17 02:09:11 +03:00
{
$this->invoice = $invoice;
$this->request = $request;
2017-11-17 02:09:11 +03:00
}
}