2016-06-04 11:20:11 +00:00
|
|
|
<?php
|
|
|
|
|
2020-09-07 20:43:23 +00:00
|
|
|
namespace App\Http\Controllers\Download;
|
2016-06-04 11:20:11 +00:00
|
|
|
|
2022-07-29 06:47:10 +00:00
|
|
|
use App\Http\Controllers\Controller;
|
2016-06-04 11:20:11 +00:00
|
|
|
use App\Models\Artist;
|
2022-07-29 06:47:10 +00:00
|
|
|
use App\Services\DownloadService;
|
2016-06-04 11:20:11 +00:00
|
|
|
|
|
|
|
class ArtistController extends Controller
|
|
|
|
{
|
2022-07-29 06:47:10 +00:00
|
|
|
public function __construct(private DownloadService $downloadService)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2018-08-18 11:51:52 +00:00
|
|
|
public function show(Artist $artist)
|
2016-06-04 11:20:11 +00:00
|
|
|
{
|
2018-08-18 11:51:52 +00:00
|
|
|
return response()->download($this->downloadService->from($artist));
|
2016-06-04 11:20:11 +00:00
|
|
|
}
|
|
|
|
}
|