mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-08 12:12:48 +01:00
30 lines
444 B
PHP
30 lines
444 B
PHP
<?php
|
|
|
|
namespace App\Events;
|
|
|
|
use App\Models\Expense;
|
|
use Illuminate\Queue\SerializesModels;
|
|
|
|
/**
|
|
* Class ExpenseWasCreated.
|
|
*/
|
|
class ExpenseWasCreated extends Event
|
|
{
|
|
use SerializesModels;
|
|
|
|
/**
|
|
* @var Expense
|
|
*/
|
|
public $expense;
|
|
|
|
/**
|
|
* Create a new event instance.
|
|
*
|
|
* @param Expense $expense
|
|
*/
|
|
public function __construct(Expense $expense)
|
|
{
|
|
$this->expense = $expense;
|
|
}
|
|
}
|