koel/app/Http/Controllers/Download/DownloadArtistController.php
2024-07-06 17:44:39 +02:00

15 lines
345 B
PHP

<?php
namespace App\Http\Controllers\Download;
use App\Http\Controllers\Controller;
use App\Models\Artist;
use App\Services\DownloadService;
class DownloadArtistController extends Controller
{
public function __invoke(Artist $artist, DownloadService $download)
{
return response()->download($download->from($artist));
}
}