這是我的看法,從laravel應用搜索..Laravel方法獲得通過可變
{{ Form::open(array('method' => 'get', 'url' => 'search'))}}
<input type="text" name="location" >
<input type="text" name="query" >
<input type="submit" >
{{ Form::close() }}
當我輸入一些東西,然後按回車頁花費我
然後我的網址是這樣的
myapp.com/search?query=abc&location=uk
我該如何編寫路線以獲取我的控制器中的url值? 幫助請
http://stackoverflow.com/questions/24744825/laravel-queries-strings – Nikhil
謝謝。我的網址就像'myapp.com/search?query = abc&location = uk' –
只有當我有這樣的'myapp.com/search/abc'時,這個答案纔會幫助我。 –