interactionService->batchLike((array) $request->songs, $this->user); return response()->json($interactions); } public function destroy(BatchInteractionRequest $request) { $this->interactionService->batchUnlike((array) $request->songs, $this->user); return response()->noContent(); } }