コード例 #1
0
ファイル: TaskCategories.php プロジェクト: nix222/crm-system
 /**
  * List of task categories
  * 
  * @return \View
  */
 public function getIndex()
 {
     $categories = Taskcategory::orderBy("id", "desc")->get();
     $content = View::make("tasks/categories/list", ["categories" => $categories]);
     return View::make("common/tpl", array("template" => $content));
 }