You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As you can see here the breadcrum component is failing on home, and even in normal routes it puts the base route two times, after home and at end.
Heres my registered menus:
protected function getMenu(Request $request)
{
// Build your menu here by constructing a MenuItemModel array
$menuItems = [
new MenuItemModel('ItemId', 'Início', 'avanzu_admin_home', [/* options */], 'iconclasses fa fa-home'),
new MenuItemModel('ItemId2', 'Categorias', 'category_index', [/* options */], 'iconclasses fa fa-tags'),
];
return $this->activateByRoute($request->get('_route'), $menuItems);
}
The text was updated successfully, but these errors were encountered:
As you can see here the breadcrum component is failing on home, and even in normal routes it puts the base route two times, after home and at end.
Heres my registered menus:
The text was updated successfully, but these errors were encountered: