In laravel 3 I was able to route with :all
wildcard like this:
Route::get('test/(:all)', array();
so I could pass all segments after test in one variable eg. from link like
http://mytestsite.dev/test/it/is/working
I would have it/is/working string passed to a controller.
How to do it in laravel 4, regarding that there is no :all
wildcard?