gpt4 book ai didi

php - 读取路由函数中的 Blade 变量

转载 作者:行者123 更新时间:2023-12-01 16:23:47 26 4
gpt4 key购买 nike

我在 Laravel 中有一个系统,当我在 View 中构建带有链接的模板时,我需要动态插入一条路由,如下所示:

<ul class="breadcrumbs pull-left">
<li><a href="{{route('home')}}">Home</a></li>
<li><a href="{{route('$route.index')}}">{{$title}}</a></li>
<li><span>{{$activeList}}</span></li>
</ul>

如何读取路由函数中的blade变量?

这不起作用:

{{route('$route.index')}}

错误:“路线 [$active.index] 未定义。(查看:C:\xampp\htdocs\systemass\resources\views\templates\srtdash\inc\pagearea.blade.php)(查看:C:\xampp\htdocs\systemass\resources\views\templates\srtdash\inc\pagearea.blade.php) ( View : C:\xampp\htdocs\systemass\resources\views\templates\srtdash\inc\pagearea.blade.php

最佳答案

只需使用变量内容即可

<ul class="breadcrumbs pull-left">
<li><a href="{{route('home')}}">Home</a></li>
<li><a href="{{route($active.'.index')}}">{{$title}}</a></li>
<li><span>{{$activeList}}</span></li>
</ul>

关于php - 读取路由函数中的 Blade 变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60305376/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com