public function byTag($slug)
 {
     $tag = new Tag();
     $collection = $tag->searchByTag($slug, 'projects');
     return view('sites.index')->with('tagOn', $collection['tag'])->with('projects', $collection['collection'])->with('currentMenu', 'proyectos');
 }