Edited readme.md via GitHub

This commit is contained in:
Taylor Otwell 2011-07-14 10:05:07 -07:00
parent a911d54166
commit 48849f63d5
1 changed files with 12 additions and 10 deletions

View File

@ -141,19 +141,21 @@ ### The Basics
All you need to do is tell Laravel the request methods and URIs it should respond to. You define the behavior of the route using an anonymous method: All you need to do is tell Laravel the request methods and URIs it should respond to. You define the behavior of the route using an anonymous method:
<?php ```php
<?php
return array( return array(
'GET /home' => function() 'GET /home' => function()
{ {
// Handles GET requests to http://example.com/index.php/home // Handles GET requests to http://example.com/index.php/home
}, },
'PUT /user/update' => function() 'PUT /user/update' => function()
{ {
// Handles PUT requests to http://example.com/index.php/user/update // Handles PUT requests to http://example.com/index.php/user/update
} }
```
You can easily define a route to handle requests to more than one URI. Just use commas: You can easily define a route to handle requests to more than one URI. Just use commas: