songRepository = $songRepository; } public function show(SongRequest $request) { $songs = $this->songRepository->getByIds($request->songs); return response()->download($this->downloadService->from($songs)); } }