/**
  * Display a listing of the resource.
  *
  * @return Response
  */
 public function index()
 {
     $allTags = Artwork::existingTags();
     return View::make('tags/index', compact('allTags'));
 }