interactionService->batchLike((array) $request->songs, $this->currentUser); return response()->json($interactions); } public function destroy(BatchInteractionRequest $request) { $this->interactionService->batchUnlike((array) $request->songs, $this->currentUser); return response()->json(null, Response::HTTP_NO_CONTENT); } }