0
我有一個形式,我的模板文件:路由查詢字符串
{{ Form::open(array('route' => 'get.index', 'method' => 'get')) }}
{{ Form::label('order', 'Order by') }}
{{ Form::select('order' , array('firstname' => 'First Name', 'lastname' => 'Last Name', 'state' => 'State')) }}
{{ Form::submit('Order results') }}
{{ Form::close() }}
提交時,這種形式輸出一個GET查詢變量名稱的順序,所以我的網址是:
http://my.app/?order=firstname
這是在get.index路線:
Route::get('/', array('uses' => '[email protected]', 'as' => 'get.index'));
有一個簡單的方法來從一個改變URL上面類似 http://my.app/order/fistname/
?