Mega work on structure.

This commit is contained in:
Taylor Otwell
2014-08-20 00:10:30 -05:00
parent aae8ef3059
commit 177d1ebb7a
19 changed files with 74 additions and 37 deletions

View File

@@ -1,6 +1,6 @@
<?php
<?php namespace App\Http\Controllers;
class HomeController extends Controller {
class HomeController extends \Controller {
/*
|--------------------------------------------------------------------------
@@ -17,7 +17,7 @@ class HomeController extends Controller {
public function index()
{
return View::make('hello');
return view('hello');
}
}