akaunting/app/Events/Expense/BillUpdated.php
2019-11-16 10:21:14 +03:00

23 lines
305 B
PHP

<?php
namespace App\Events\Expense;
use Illuminate\Queue\SerializesModels;
class BillUpdated
{
use SerializesModels;
public $bill;
/**
* Create a new event instance.
*
* @param $bill
*/
public function __construct($bill)
{
$this->bill = $bill;
}
}