/**
  * Remove the specified resource from storage.
  *
  * @param  int  $id
  * @return Response
  */
 public function destroy($id)
 {
     $tag = $this->tagRepository->tagOfId($id);
     if (!$tag) {
         return $this->respondNotFound('Tag does not exist');
     }
     $this->tagRepository->delete($tag);
     return $this->respond(['data' => $this->transform($tag)]);
 }