public function listCategories() { return array('' => ' ') + Category::lists('category', 'id')->toArray(); }
/** * get the list of priorities * @return mixed */ protected function categoriesWithID() { $me = Category::groupBy('category')->orderBy('category')->lists('ID', 'category'); return $me->toArray(); }