akaunting/app/Events/Purchase/BillReceived.php

23 lines
307 B
PHP
Raw Normal View History

2020-01-23 17:57:28 +03:00
<?php
namespace App\Events\Purchase;
use Illuminate\Queue\SerializesModels;
class BillReceived
{
use SerializesModels;
public $bill;
/**
* Create a new event instance.
*
* @param $bill
*/
public function __construct($bill)
{
$this->bill = $bill;
}
}