akaunting/app/Events/BillUpdated.php

19 lines
230 B
PHP
Raw Normal View History

2017-09-14 22:21:00 +03:00
<?php
namespace App\Events;
class BillUpdated
{
public $bill;
/**
* Create a new event instance.
*
* @param $bill
*/
public function __construct($bill)
{
$this->bill = $bill;
}
2018-10-23 18:47:55 +03:00
}