This commit is contained in:
Taylor Otwell
2014-08-18 23:43:10 -05:00
parent 3ffbb5d6ba
commit 80a60552d7
18 changed files with 0 additions and 0 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');
}
}