選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

21 行
395B

  1. <?php
  2. namespace App\Models;
  3. use CodeIgniter\Model;
  4. class DepartamentoModel extends Model
  5. {
  6. protected $table = 'departamento';
  7. protected $primaryKey = 'iddepartamento';
  8. function getDepartamentos()
  9. {
  10. return $this->select(['iddepartamento', 'nombre'])
  11. ->where('status', '1')
  12. ->orderBy('nombre')
  13. ->findAll();
  14. }
  15. }