Working on a few files.
This commit is contained in:
parent
65dce4d093
commit
8a2f8bb2c7
|
@ -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');
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
routes.php
|
routes.php
|
||||||
compiled.php
|
compiled.php
|
||||||
services.json
|
services.json
|
||||||
|
routes.scanned.php
|
||||||
|
|
Loading…
Reference in New Issue