koel/app/Http/Controllers/API/MediaInformation/AlbumController.php

14 lines
292 B
PHP
Raw Normal View History

<?php
2018-08-18 13:19:40 +00:00
namespace App\Http\Controllers\API\MediaInformation;
use App\Models\Album;
2018-08-18 13:19:40 +00:00
class AlbumController extends Controller
{
2017-08-06 09:43:59 +00:00
public function show(Album $album)
{
return response()->json($this->mediaInformationService->getAlbumInformation($album)?->toArray() ?: []);
}
}