From 8a2f8bb2c746ae3a6ef40842d987c4ceed72ff74 Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Fri, 3 Oct 2014 21:30:51 -0500 Subject: [PATCH] Working on a few files. --- app/Http/Controllers/HomeController.php | 5 ++++- storage/framework/.gitignore | 3 ++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/app/Http/Controllers/HomeController.php b/app/Http/Controllers/HomeController.php index f934c007..091756e3 100644 --- a/app/Http/Controllers/HomeController.php +++ b/app/Http/Controllers/HomeController.php @@ -13,10 +13,13 @@ class HomeController extends Controller { | based routes. That's great! Here is an example controller method to | 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() { return view('hello'); diff --git a/storage/framework/.gitignore b/storage/framework/.gitignore index d235804e..3bcf9648 100644 --- a/storage/framework/.gitignore +++ b/storage/framework/.gitignore @@ -1,3 +1,4 @@ routes.php compiled.php -services.json \ No newline at end of file +services.json +routes.scanned.php