更改href

时间:2017-12-22 11:21:06

标签: html laravel

<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}}&#34;&gt;图

1 个答案:

答案 0 :(得分:-1)

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

@linktoahref一样,我建议你使用url()route()函数