Merge branch 'develop' of github.com:laravel/laravel into develop

This commit is contained in:
Taylor Otwell
2012-06-03 17:37:05 -05:00
5 changed files with 29 additions and 11 deletions

View File

@@ -307,6 +307,10 @@ This routing convention may not be desirable for every situation, so you may als
Route::get('welcome', array('after' => 'log', 'uses' => 'home@index'));
#### Registering a named route that points to a controller action:
Route::get('welcome', array('as' => 'home.welcome', 'uses' => 'home@index'));
<a name="cli-route-testing"></a>
## CLI Route Testing