/**
  * Display a listing of the resource.
  *
  * @return Response
  */
 public function index()
 {
     $tags = DatasetTag::all();
     return view('tags.index', compact('tags'));
 }