Pony.fm/app/controllers/HomeController.php

9 lines
145 B
PHP
Raw Normal View History

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