如何在Laravel上制作strtolower和空间

时间:2017-07-20 08:40:24

标签: php laravel

你好我是新手所以我真的需要你的帮助 我想建立这样的链接:

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

1 个答案:

答案 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

我希望这会有所帮助