Breadcrumb have disappeared
Metronic8 Demo7 Lavravel
Breadcrumb have disappeared.
What is the logic to set the Breadcrumbs?
Thank you
Replies (6)
Sorry for the delay. Give me some time to check. Probably there is a bug.
Thanks
Hi alx naxis,
From the config/global/menu.php file, you can refer to the "system" menu example. It has 2-level menus. The breadcrumb combines the title from it.
<img src=" alt="image" border="0">
Thanks
Thank you.
I setup the Breadcrumb, it appearing but the <h1> tag on the top of it is not appearing.
array(
"title" => "Associations",
"path" => "#",
"icon" => array(
"svg" => theme()->getSvgIcon("demo1/media/icons/duotune/general/gen025.svg", "svg-icon-2"),
"font" => "<i class="bi bi-layers fs-3"></i>",
),
"classes" => array("item" => "menu-accordion"),
"attributes" => array(
"data-kt-menu-trigger" => "click",
),
"sub" => array(
"class" => "menu-sub-accordion menu-active-bg",
"items" => array(
array(
"title" => "Members list",
"path" => "association/members/list",
"bullet" => "<span class="bullet bullet-dot"></span>",
),
),
),
), The Breadcrumb appears but Title is not appearing.
array(
"title" => "Associations",
"path" => "#",
"icon" => array(
"svg" => theme()->getSvgIcon("demo1/media/icons/duotune/general/gen025.svg", "svg-icon-2"),
"font" => "<i class="bi bi-layers fs-3"></i>",
),
"classes" => array("item" => "menu-accordion"),
"attributes" => array(
"data-kt-menu-trigger" => "click",
),
"sub" => array(
"class" => "menu-sub-accordion menu-active-bg",
"items" => array(
array(
"title" => "Members list",
"path" => "association/members/list",
"bullet" => "<span class="bullet bullet-dot"></span>",
),
),
),
), Hi alx naxis,
The breadcrumb automatically gets from the menu config; config/global/menu.php.
Thanks
OK please help me with this.
let say I have a page
GROUP path : /group/overview under with I have
SUB GROUP path : /group/sub/overview
the Breadcrumb should be
Home/ GROUP
Home/ GROUP/ SUB-GROUP
How can I setup this?