Are you talking about a breadcrumb trail in your markup? Where you can click any of the parts of the link to navigate to that page?
Aug 14, 2019
5
Level 6
Implementing Article Path
Hi, How can I add path for my articles? I don't have any insight for how I can do it. I want to create a thing like this "Home/Articles/Electronic/Microcontroller/ThisArticle" that there are ability to Click on every path before "ThisArticle".
Level 19
Is each piece of that path an actual url? For example:
https://my.app/Home/Articles/Microcontroller
https://my.app/Home/Articles/Microcontroller/ThisArticle
If they are, you can access the route path from the Route facade and explode on the /, otherwise you can use a package specifically for this purpose. https://github.com/davejamesmiller/laravel-breadcrumbs
2 likes
Please or to participate in this conversation.