diff --git a/laravel/documentation/routing.md b/laravel/documentation/routing.md index 550e2ddc..eee1bb8c 100644 --- a/laravel/documentation/routing.md +++ b/laravel/documentation/routing.md @@ -78,6 +78,13 @@ In the following example the first parameter is the route that you're "registeri // }); +#### Catching the remaining URI without limitations: + + Route::get('files/(:all)', function($path) + { + // + }); + #### Allowing a URI segment to be optional: Route::get('page/(:any?)', function($page = 'index')