|
@@ -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');
|