mirror of
https://github.com/Poniverse/Pony.fm.git
synced 2024-11-23 21:47:59 +01:00
23 lines
No EOL
363 B
PHP
23 lines
No EOL
363 B
PHP
<?php
|
|
|
|
namespace App\Http\Controllers;
|
|
|
|
use View;
|
|
|
|
class FavouritesController extends Controller
|
|
{
|
|
public function getTracks()
|
|
{
|
|
return View::make('shared.null');
|
|
}
|
|
|
|
public function getAlbums()
|
|
{
|
|
return View::make('shared.null');
|
|
}
|
|
|
|
public function getPlaylists()
|
|
{
|
|
return View::make('shared.null');
|
|
}
|
|
} |