koel/app/Http/Controllers/API/Download/AlbumController.php
2020-04-12 10:18:17 +02:00

21 lines
350 B
PHP

<?php
namespace App\Http\Controllers\API\Download;
use App\Models\Album;
/**
* @group 6. Download
*/
class AlbumController extends Controller
{
/**
* Download a whole album
*
* @response []
*/
public function show(Album $album)
{
return response()->download($this->downloadService->from($album));
}
}