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