akaunting/app/Events/Menu/AdminCreated.php

21 lines
276 B
PHP
Raw Permalink Normal View History

2017-09-14 22:21:00 +03:00
<?php
2019-11-16 10:21:14 +03:00
namespace App\Events\Menu;
2017-09-14 22:21:00 +03:00
2020-11-21 20:24:42 +03:00
use App\Abstracts\Event;
2019-11-16 10:21:14 +03:00
2020-11-21 20:24:42 +03:00
class AdminCreated extends Event
2017-09-14 22:21:00 +03:00
{
public $menu;
/**
* Create a new event instance.
*
* @param $menu
*/
public function __construct($menu)
{
$this->menu = $menu;
}
2018-10-23 18:47:55 +03:00
}