songRepository = $songRepository; } /** * Download a song or multiple songs. */ public function show(SongRequest $request) { $songs = $this->songRepository->getByIds($request->songs); return response()->download($this->downloadService->from($songs)); } }