akaunting/app/Events/Expense/BillRecurring.php

23 lines
307 B
PHP
Raw Normal View History

2017-09-14 22:21:00 +03:00
<?php
2019-11-16 10:21:14 +03:00
namespace App\Events\Expense;
2017-09-14 22:21:00 +03:00
2019-11-16 10:21:14 +03:00
use Illuminate\Queue\SerializesModels;
class BillRecurring
2017-09-14 22:21:00 +03:00
{
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
}