mirror of
https://github.com/koel/koel
synced 2024-12-20 17:43:36 +00:00
13 lines
243 B
PHP
13 lines
243 B
PHP
<?php
|
|
|
|
namespace App\Http\Controllers\Download;
|
|
|
|
use App\Models\Album;
|
|
|
|
class AlbumController extends Controller
|
|
{
|
|
public function show(Album $album)
|
|
{
|
|
return response()->download($this->downloadService->from($album));
|
|
}
|
|
}
|