Working on a few files.

This commit is contained in:
Taylor Otwell 2014-10-03 21:30:51 -05:00
parent 65dce4d093
commit 8a2f8bb2c7
2 changed files with 6 additions and 2 deletions

View File

@ -13,10 +13,13 @@ class HomeController extends Controller {
| based routes. That's great! Here is an example controller method to | based routes. That's great! Here is an example controller method to
| get you started. To route to this controller, just add the route: | get you started. To route to this controller, just add the route:
| |
| Route::get('/', 'HomeController@index'); | $router->get('/', 'HomeController@index');
| |
*/ */
/**
* @Get("/", as="home")
*/
public function index() public function index()
{ {
return view('hello'); return view('hello');

View File

@ -1,3 +1,4 @@
routes.php routes.php
compiled.php compiled.php
services.json services.json
routes.scanned.php