mirror of
https://github.com/cachethq/cachet.git
synced 2026-07-01 08:15:55 +00:00
8 lines
124 B
PHP
8 lines
124 B
PHP
<?php
|
|
|
|
class HomeController extends BaseController {
|
|
public function showIndex() {
|
|
return View::make('index');
|
|
}
|
|
}
|