routes.php内では以下の用に定義しておいて
Route::get('example', array('as' => 'example.index', 'uses' => 'ExampleController@getIndex'));
テンプレートでは以下の用に記述する
{{ URL::route('example.index', array('key' => 'value')) }}
コントローラに直接渡したい場合は、
{{ URL::to(action('ExampleController@anySearch') . '?' . http_build_query(array('key'=>'value'))) }}
以下のようなURLが生成される
http://localhost:8000/example/search?key=value