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