/** * * @return a list of objects. */ public static function listByFullName() { $items = Departamento::all(); $key = 'id'; $value = 'full_name'; return Departamento::getListFields($items, $key, $value); }