我正在根据本教程设置一个嵌套资源来管理用户的帖子:https://backpackforlaravel.com/articles/tutorials/nested-resources-in-backpack-crud。
问题是按钮中的Request :: url()生成的URL会添加" search"像这样:
<a href="{{ Request::url().'/'.$entry->getKey() }}/post" class="btn btn-xs btn-default">See Posts</a>
// outputs the URL
// http://awesome.app/admin/user/search/99/post
注意&#34;搜索&#34; URL中的术语。那应该在那里。那么如何正确删除呢?
答案 0 :(得分:0)
我有同样的问题
{{ str_replace('search/','',Request::url().'/'.$entry->getKey()) }}
为我修好了