コード例 #1
0
ファイル: TermController.php プロジェクト: creolab/krustr
 /**
  * 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));
 }