interactionRepository = $interactionRepository; } /** * Download all songs favorite'd by the current user * * @response [] */ public function show(Request $request) { $songs = $this->interactionRepository->getUserFavorites($request->user()); return response()->download($this->downloadService->from($songs)); } }