我在Method='GET'
{{ Form::open(array('method' => 'get')) }}
我在那里有几个输入字段:city, skillLevel, province and category
。
当我提交表格时,我会得到一个如此糟糕的网址:
http://localhost/vacatures?city=somehwhere&skillLevel=junior&province=Zeeland&category=django
但我想要这样的事情:
http://localhost/vacatures/somewhere/junior/Zeeland/django
我如何实现这一目标?我尝试过给出一个路由属性和一个动作分配,但这没有用。
答案 0 :(得分:5)
也许这个主题可以帮助您 - How To Pass GET Parameters To Laravel From With GET Method ?
有2个不错的答案,应该适合您的问题。