akaunting/app/Events/Purchase/BillCreated.php

23 lines
306 B
PHP
Raw Normal View History

2017-09-14 22:21:00 +03:00
<?php
2019-12-31 15:49:09 +03:00
namespace App\Events\Purchase;
2019-11-16 10:21:14 +03:00
use Illuminate\Queue\SerializesModels;
2017-09-14 22:21:00 +03:00
class BillCreated
{
2019-11-16 10:21:14 +03:00
use SerializesModels;
2017-09-14 22:21:00 +03:00
public $bill;
/**
* Create a new event instance.
*
* @param $bill
*/
public function __construct($bill)
{
$this->bill = $bill;
}
2018-10-23 18:47:55 +03:00
}