21 lines
329 B
PHP
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;
|
|
}
|
|
}
|