/**
  *
  * @param Tag $tag
  * @return \Illuminate\Http\Response
  * @throws \Exception
  */
 public function destroy(Tag $tag)
 {
     $tag->delete();
     return $this->responseNoContent();
 }