akaunting/app/Events/Menu/NotificationsCreated.php
2022-06-01 10:15:55 +03:00

21 lines
329 B
PHP

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