labelService->create($title, $color, $boardId); } #[NoAdminRequired] public function update(int $id, string $title, string $color): Label { return $this->labelService->update($id, $title, $color); } #[NoAdminRequired] public function delete(int $labelId): Label { return $this->labelService->delete($labelId); } }