Updated music player view

This commit is contained in:
gballan1
2016-04-20 23:11:33 -04:00
parent 9cac8d8293
commit 25f3dc27f4
2 changed files with 37 additions and 35 deletions

View File

@ -2,6 +2,10 @@
$app->get('/music', function() use($app) {
$app->render('music.twig');
$albums = $app->album->all();
$app->render('music.twig', [
'albums' => $albums,
]);
})->name('music');