你好我是新手所以我真的需要你的帮助 我想建立这样的链接:
https://floristshop.msi-staging.tk/store/4/bunga-indah
但我得到的是这样的:
https://floristshop.msi-staging.tk/store/4/Bunga%20Indah
这是我的代码:
<p>
@foreach($stores as $store)
<a href="{{ env('FRONTEND_URL') . "/store/$store->id/$store->name"}}"><label>{{ env('FRONTEND_URL') . "/store/$store->id/$store->name"}} </label></a>
@endforeach
</p>
我真的需要一些帮助,谢谢:D
答案 0 :(得分:4)
Laravel提供了非常好的帮助来创建slu ..
您可以尝试str_slug('Laravel 5 Framework', '-');
来获得所需的结果。
@foreach($stores as $store)
<a href="{{ env('FRONTEND_URL') . "/store/$store->id/$store->name"}}"><label>{{ env('FRONTEND_URL') . "/store/$store->id/".str_slug($store->name)}} </label></a>
@endforeach
我希望这会有所帮助