akaunting/app/Events/BillUpdated.php
2018-10-23 18:47:55 +03:00

19 lines
230 B
PHP

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