akaunting/app/Events/Menu/ItemAuthorizing.php
2021-06-18 16:55:04 +03:00

21 lines
279 B
PHP

<?php
namespace App\Events\Menu;
use App\Abstracts\Event;
class ItemAuthorizing extends Event
{
public $item;
/**
* Create a new event instance.
*
* @param $item
*/
public function __construct($item)
{
$this->item = $item;
}
}