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