27 lines
412 B
PHP
27 lines
412 B
PHP
<?php
|
|
|
|
namespace App\Events\Income;
|
|
|
|
use Illuminate\Queue\SerializesModels;
|
|
|
|
class InvoiceUpdated
|
|
{
|
|
use SerializesModels;
|
|
|
|
public $invoice;
|
|
|
|
public $request;
|
|
|
|
/**
|
|
* Create a new event instance.
|
|
*
|
|
* @param $invoice
|
|
* @param $request
|
|
*/
|
|
public function __construct($invoice, $request)
|
|
{
|
|
$this->invoice = $invoice;
|
|
$this->request = $request;
|
|
}
|
|
}
|