Working on app structure.

This commit is contained in:
Taylor Otwell
2014-08-13 09:44:20 -05:00
parent 262dec16f8
commit ee6f47dc47
19 changed files with 8 additions and 7 deletions

View File

@@ -0,0 +1,23 @@
<?php
class HomeController extends Controller {
/*
|--------------------------------------------------------------------------
| Default Home Controller
|--------------------------------------------------------------------------
|
| You may wish to use controllers instead of, or in addition to, Closure
| 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');
|
*/
public function index()
{
return View::make('hello');
}
}