refactoring. added default controller. added uri class.

This commit is contained in:
Taylor Otwell
2011-10-24 21:00:51 -05:00
parent 320653e832
commit d4ddb05abb
13 changed files with 200 additions and 134 deletions

View File

@@ -0,0 +1,10 @@
<?php
class Home_Controller extends Controller {
public function index()
{
return View::make('home.index');
}
}