public function update($id, UpdateTagRequest $request)
    {
        $tagSaved = $this->tagRepository->updateById($id, $request->only('name'));

        if (! $tagSaved) {