Pony.fm/app/controllers/HomeController.php

9 lines
145 B
PHP
Raw Normal View History

2013-07-25 16:33:04 -05:00
<?php
2013-07-28 12:45:21 -05:00
use Entities\Track;
2013-07-25 16:33:04 -05:00
class HomeController extends Controller {
public function getIndex() {
return View::make('home.index');
}
}