11 lines
243 B
PHP
11 lines
243 B
PHP
<?php
|
|
|
|
class HomeController extends Controller {
|
|
/**
|
|
* Returns the rendered Blade templates.
|
|
* @return View
|
|
*/
|
|
public function showIndex() {
|
|
return View::make('index', ['components' => Component::all()]);
|
|
}
|
|
} |