本篇內(nèi)容介紹了“Laravel導(dǎo)航元素工具Laravel Navigation怎么使用”的有關(guān)知識(shí),在實(shí)際案例的操作過程中,不少人都會(huì)遇到這樣的困境,接下來就讓小編帶領(lǐng)大家學(xué)習(xí)一下如何處理這些情況吧!希望大家仔細(xì)閱讀,能夠?qū)W有所成!
創(chuàng)新互聯(lián)建站制作網(wǎng)站網(wǎng)頁找三站合一網(wǎng)站制作公司,專注于網(wǎng)頁設(shè)計(jì),成都網(wǎng)站設(shè)計(jì)、成都做網(wǎng)站,網(wǎng)站設(shè)計(jì),企業(yè)網(wǎng)站搭建,網(wǎng)站開發(fā),建網(wǎng)站業(yè)務(wù),680元做網(wǎng)站,已為上1000+服務(wù),創(chuàng)新互聯(lián)建站網(wǎng)站建設(shè)將一如既往的為我們的客戶提供最優(yōu)質(zhì)的網(wǎng)站建設(shè)、網(wǎng)絡(luò)營銷推廣服務(wù)!
雖然 Spatie Laravel Menu 包是 Laravel 的 Html 菜單生成器,但可以將此包視為導(dǎo)航組件的「無渲染組件」:
使用這個(gè)包,你還可以使用以下方法從導(dǎo)航生成面包屑:app(Navigation::class)
->add('Home', route('home'))
->add('Blog', route('blog.index'), function (Section $section) {
$section
->add('All posts', route('blog.index'))
->add('Topics', route('blog.topics.index'));
})
->addIf(Auth::user()->isAdmin(), function (Navigation $navigation) {
$navigation->add('Admin', route('admin.index'));
});
// 渲染到樹結(jié)構(gòu)
app(Navigation::class)->tree();
/*
[
{ "title": "Home", "url": "/", "active": false, "children": [] },
{
"title": "Blog",
"url": "/blog",
"active": false,
"children": [
{ "title": "All posts", "url": "/blog", "active": false, "children": [] },
{ "title": "Topics", "url": "/blog/topics", "active": true, "children": [] }
],
},
{ "title": "Admin", "url": "/admin", "active": false, "children": [] }
]
*/
// 在你的控制器中添加額外的頁面
app(Navigation::class)->activeSection()->add($topic->name, route('blog.topics.show', $topic));
// Render to breadcrumbs
app(Navigation::class)->breadcrumbs();
/*
[
{ "title": "Blog", "url": "/blog" },
{ "title": "Topics", "url": "/blog/topics" },
{ "title": "Laravel", "url": "/blog/topics/laravel" }
]
*/
“Laravel導(dǎo)航元素工具Laravel Navigation怎么使用”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關(guān)的知識(shí)可以關(guān)注創(chuàng)新互聯(lián)網(wǎng)站,小編將為大家輸出更多高質(zhì)量的實(shí)用文章!