Akaunting/app/Events/Expense/BillCreated.php

23 lines
305 B
PHP
Raw Normal View History

2017-09-14 19:21:00 +00:00
<?php
2019-11-16 07:21:14 +00:00
namespace App\Events\Expense;
use Illuminate\Queue\SerializesModels;
2017-09-14 19:21:00 +00:00
class BillCreated
{
2019-11-16 07:21:14 +00:00
use SerializesModels;
2017-09-14 19:21:00 +00:00
public $bill;
/**
* Create a new event instance.
*
* @param $bill
*/
public function __construct($bill)
{
$this->bill = $bill;
}
2018-10-23 15:47:55 +00:00
}