This commit is contained in:
Graham Campbell
2014-12-29 23:07:46 +00:00
parent 4d1246dcf6
commit 15861fbf5e
9 changed files with 59 additions and 15 deletions
+11 -1
View File
@@ -3,10 +3,19 @@
class HomeController extends Controller
{
/**
* @var Component $component
* The component instance.
*
* @var \Component $component
*/
protected $component;
/**
* Create a new home controller instance.
*
* @param \Component $component
*
* @return void
*/
public function __construct(Component $component)
{
$this->component = $component;
@@ -14,6 +23,7 @@ class HomeController extends Controller
/**
* Returns the rendered Blade templates.
*
* @return \Illuminate\View\View
*/
public function showIndex()