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