<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;图
答案 0 :(得分:-1)
看起来你在VLead
页面上。如果您使用href="ClientPage/{{ $client->id }}"
,它会将当前页面保留在网址中。将href更改为/public/ClientPage/{{ $client->id }}
以解决此问题。
和@linktoahref一样,我建议你使用url()或route()函数