mirror of
https://github.com/CachetHQ/Cachet.git
synced 2025-01-31 04:28:16 +01:00
12 lines
244 B
PHP
12 lines
244 B
PHP
<?php
|
|
|
|
class HomeController extends Controller {
|
|
/**
|
|
* Returns the rendered Blade templates.
|
|
* @return View
|
|
*/
|
|
public function showIndex() {
|
|
return View::make('index', ['components' => Component::all()]);
|
|
}
|
|
}
|