I am looking for yii2 beadcrumb code
I have layout page in twig want to add breadcrumb there and want to update it according to pages for example
Dashboard/Employees/Add Employee
Dashboard/Employee/Edit Employee
Dashboard and employee will be clickable
I got very less information on yii2 breadcrumbs on internet.
In your main layout use:
And in your view:
This will generate the following breadcrumbs:
In your layout-
In your view-
Hope it will work.
My Code looks like this:
and on any of the view page it I add a snippet
The above is a simple example. The issue with this is that it does not truly give out the tree structure for navigation. I will have to write a helper function to track the history or tree path for each view page.