18 lines
229 B
PHP
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;
|
|
}
|
|
} |