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