mirror of
https://github.com/Poniverse/Pony.fm.git
synced 2025-01-31 19:16:44 +01:00
7 lines
133 B
PHP
7 lines
133 B
PHP
|
<?php
|
||
|
|
||
|
class PlaylistsController extends Controller {
|
||
|
public function getIndex() {
|
||
|
return View::make('playlists.index');
|
||
|
}
|
||
|
}
|