akaunting/app/Events/Purchase/BillCreated.php
2019-12-31 15:49:09 +03:00

23 lines
306 B
PHP

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