Ejemplo n.º 1
0
 /**
  * Tag index page (List current tags)
  *
  * @param Tag $tag
  *
  * @return \Illuminate\View\View
  */
 public function getIndex(Tag $tag)
 {
     return view('administration.tags.index', ['tags' => $tag->getGroupTags(), 'projects' => $this->auth->user()->projects()->get()]);
 }