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

17 lines
302 B
PHP
Raw Normal View History

<?php
namespace App\Http\Controllers\API\Download;
use App\Models\Album;
class AlbumController extends Controller
{
/**
* Download all songs in an album.
*/
2018-08-18 11:51:52 +00:00
public function show(Album $album)
{
2018-08-18 11:51:52 +00:00
return response()->download($this->downloadService->from($album));
}
}