Skip to content

Commit

Permalink
make fillable attributes public
Browse files Browse the repository at this point in the history
  • Loading branch information
denisdulici committed Oct 25, 2023
1 parent 5177c7c commit b69bb5c
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions src/MenuItem.php
Original file line number Diff line number Diff line change
Expand Up @@ -47,59 +47,59 @@ class MenuItem implements Arrayable
/**
* @var string
*/
protected $url;
public $url;

/**
* @var string
*/
protected $route;
public $route;

/**
* @var string
*/
protected $fragment;
public $fragment;

/**
* @var string
*/
protected $title;
public $title;

/**
* @var string
*/
protected $name;
public $name;

/**
* @var string
*/
protected $icon;
public $icon;

/**
* @var int
*/
protected $parent;
public $parent;

/**
* @var array
*/
protected $attributes;
public $attributes;

/**
* @var bool
*/
protected $active;
public $active;

/**
* @var int
*/
protected $order;
public $order;

/**
* The hideWhen callback.
*
* @var Closure
*/
protected $hideWhen;
public $hideWhen;

/**
* Constructor.
Expand Down

0 comments on commit b69bb5c

Please sign in to comment.