akaunting/app/Events/BillUpdated.php
2017-09-14 22:21:00 +03:00

18 lines
229 B
PHP

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