Ejemplo n.º 1
0
 /**
  * List all terms in taxonomy
  * @return View
  */
 public function index()
 {
     $terms = $this->termRepository->all($this->taxonomy->name);
     return View::make('krustr::terms.index', array('terms' => $terms));
 }