更改href

问题描述 投票:0回答:1
<a class="btn btn-warning" href="ClientPage/{{ $client->id }}"> View</a>
http://localhost:9090/S2/public/VLead/ClientPage/17

但是应该是正确的

http://localhost:9090/S2/public/ClientPage/17

所以我需要从href中删除VLead我点击id}}“>查看

html laravel
1个回答
-1
投票

看起来你在VLead页面上。如果你使用href="ClientPage/{{ $client->id }}",它会将当前页面保留在url中。将href更改为/public/ClientPage/{{ $client->id }}以解决此问题。

@linktoahref指出我建议你使用url()route()函数

© www.soinside.com 2019 - 2024. All rights reserved.