Exemple #1
0
 /**
  * Show products.
  *
  * @return Response
  */
 public function index()
 {
     $tagService = new tagService();
     $tagTypes = $tagService->getAllTagType();
     return view('admin.tag.index', array('tagTypes' => $tagTypes));
 }