Pony.fm/app/controllers/HomeController.php

7 lines
123 B
PHP
Raw Normal View History

2013-07-25 23:33:04 +02:00
<?php
class HomeController extends Controller {
public function getIndex() {
return View::make('home.index');
}
}